Skip to content

Kloudly Academy

  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)Start your Java journey here. Beginner tutorials to set up, write your first code, and understand the basics of Java programming.
      • Level 2: Intermediate (Object-Oriented Foundations)Level 2 builds your Java OOP skills. Learn classes, objects, inheritance, and polymorphism to create structured, reusable applications.
      • Level 3: Advanced (Deep Dive & Modern Java)Level 3 explores modern Java. Learn streams, lambdas, modules, and advanced APIs to write efficient, scalable, and professional code.
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic SyntaxLearn Java’s basic syntax: variables, operators, and control flow. Build a strong foundation to write and understand simple programs.
      • Core OOP PrinciplesLearn the four pillars of OOP in Java. Understand encapsulation, inheritance, polymorphism, and abstraction with simple examples.
      • Key Java APIsDive into Java Strings. Explore immutability, StringBuilder, and StringBuffer to manage text efficiently and avoid common pitfalls.
      • ExceptionsLearn Java exceptions and error handling. Use try-catch, finally, and throw to build reliable, resilient, and maintainable programs.
      • Common Java Exceptions
      • Collections FrameworkMaster the Java Collections Framework. Learn Lists, Sets, Maps, and utilities to store, organize, and manipulate data effectively.
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring TutorialsIn this series, you will find all the articles related to the Spring ecosystem, including Spring Framework and Spring Boot.
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java FlashcardsAll flashcards about the Core Java SE
    • All Flashcards
  • About
  • Resources
  • Toggle website search
Menu Close
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources
  • Toggle website search
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources
  • Toggle website search
  • Home
  • Learning Paths
    • Java SE Path
      • Level 1: Beginner (Getting Started)
      • Level 2: Intermediate (Object-Oriented Foundations)
      • Level 3: Advanced (Deep Dive & Modern Java)
  • Java
    • Start Here
      • Entry-level Tutorials
    • Core Java
      • Basic Syntax
      • Core OOP Principles
      • Key Java APIs
      • Exceptions
      • Common Java Exceptions
      • Collections Framework
    • Java SE LTS Features
      • Java 21 New Features
      • Java 17 New Features
      • Java 11 New Features
      • Java 8 New Features
    • All Java Tutorials
  • Spring
    • All Spring Tutorials
  • DevOps
    • All DevOps Tutorials
  • Flashcards
    • Java Flashcards
    • All Flashcards
  • About
  • Resources

Exception Handling

Read more about the article Checked vs Unchecked Exceptions in Java

Checked vs Unchecked Exceptions in Java

  • Post author:Noel Kamphoa
  • Post published:November 17, 2025
  • Post category:Java Practitioner/Exception Handling, Logging and Debugging/Core Java Tutorials

Understand the difference between checked and unchecked exceptions in Java with clear definitions, examples, and handling tips

Continue ReadingChecked vs Unchecked Exceptions in Java
Read more about the article Custom Exception Classes: When and How to Create Them

Custom Exception Classes: When and How to Create Them

  • Post author:Noel Kamphoa
  • Post published:August 20, 2025
  • Post category:Java Practitioner/Exception Handling, Logging and Debugging/Core Java Tutorials

Master error handling with Custom Exception. Learn when and how to create them for clearer, more robust and maintainable application code

Continue ReadingCustom Exception Classes: When and How to Create Them
Read more about the article Declaring and Throwing Exceptions in Java: A Practical Guide

Declaring and Throwing Exceptions in Java: A Practical Guide

  • Post author:Noel Kamphoa
  • Post published:August 15, 2025
  • Post category:Java Practitioner/Exception Handling, Logging and Debugging/Core Java Tutorials

When to Throw Exception vs declare throws in Java. Practical rules, examples, and best practices for robust, readable, testable APIs

Continue ReadingDeclaring and Throwing Exceptions in Java: A Practical Guide
Read more about the article Exception Hierarchy in Java: Checked, Unchecked, and Errors

Exception Hierarchy in Java: Checked, Unchecked, and Errors

  • Post author:Noel Kamphoa
  • Post published:August 9, 2025
  • Post category:Exception Handling, Logging and Debugging/Core Java Tutorials

Learn the Java Exception Hierarchy, including checked, unchecked, and errors, to handle exceptions effectively in your code.

Continue ReadingException Hierarchy in Java: Checked, Unchecked, and Errors
Read more about the article Exception in Java: How It Affects Program Flow

Exception in Java: How It Affects Program Flow

  • Post author:Noel Kamphoa
  • Post published:August 9, 2025
  • Post category:Exception Handling, Logging and Debugging/Core Java Tutorials

Learn how exception in Java influences program flow. Understand try-catch behavior, execution order, and best practices for handling errors.

Continue ReadingException in Java: How It Affects Program Flow
Read more about the article How to Fix UnfinishedStubbingException  In Java

How to Fix UnfinishedStubbingException  In Java

  • Post author:Noel Kamphoa
  • Post published:November 16, 2024
  • Post category:Java Exceptions/Core Java Tutorials

Learn what causes UnfinishedStubbingException in Java, how to identify improper mock usage, and best practices to avoid this Mockito error.

Continue ReadingHow to Fix UnfinishedStubbingException  In Java
Read more about the article How to Fix InvalidUseOfMatchersException In Java

How to Fix InvalidUseOfMatchersException In Java

  • Post author:Noel Kamphoa
  • Post published:November 16, 2024
  • Post category:Java Exceptions/Core Java Tutorials

Learn about the causes of InvalidUseOfMatchersException in Java, common mistakes with Mockito matchers, and how to fix them effectively

Continue ReadingHow to Fix InvalidUseOfMatchersException In Java
Read more about the article How To Fix ClassCastException In Java

How To Fix ClassCastException In Java

  • Post author:Noel Kamphoa
  • Post published:August 2, 2024
  • Post category:Core Java Tutorials/Java Exceptions

Learn about ClassCastException in Java, common scenarios that trigger it, and best practices to avoid this runtime error in your code

Continue ReadingHow To Fix ClassCastException In Java
Read more about the article How To Fix NumberFormatException In Java

How To Fix NumberFormatException In Java

  • Post author:Noel Kamphoa
  • Post published:June 16, 2024
  • Post category:Java Exceptions/Core Java Tutorials

Learn how to handle NumberFormatException in Java. This guide covers common causes, examples, and best practices for robust number parsing

Continue ReadingHow To Fix NumberFormatException In Java
Read more about the article How To Fix ConcurrentModificationException In Java

How To Fix ConcurrentModificationException In Java

  • Post author:Noel Kamphoa
  • Post published:June 15, 2024
  • Post category:Java Exceptions/Core Java Tutorials

Learn how to fix ConcurrentModificationException in Java with practical tips and best practices to handle concurrent modifications.

Continue ReadingHow To Fix ConcurrentModificationException In Java
  • 1
  • 2
  • Go to the next page

Tweets from @nkamphoa

Noel KAMPHOA Follow

#Java enthusiast ☕ | 10+ years coding wizard 🧙‍♂️ | #Blogging about Java at https://t.co/FUPJBD6fB1 | Start your own blog today https://t.co/LQej3RH51A

nkamphoa
nkamphoa Noel KAMPHOA @nkamphoa ·
6 Jan

Learn what Java variables are, how to declare and use them, and understand types, scope, and best practices with clear code examples
https://nkamphoa.com/java-variables/

Reply on Twitter 2008433603978359203 Retweet on Twitter 2008433603978359203 Like on Twitter 2008433603978359203 Twitter 2008433603978359203
nkamphoa Noel KAMPHOA @nkamphoa ·
6 Jan

Comment your take
#Java #InterviewPrep #BackEnd #Coding #Programming

Reply on Twitter 2008418455087620167 Retweet on Twitter 2008418455087620167 Like on Twitter 2008418455087620167 Twitter 2008418455087620167
Load More
  • LinkedIn
  • Facebook
  • GitHub
  • Twitter

Categories

  • Arrays and Loops
  • AWS Tutorials
  • Classes and Objects
  • Collections
  • Core Java Tutorials
  • DevOps
  • DevOps Featured
  • Exception Handling, Logging and Debugging
  • Featured
  • Implement Inheritance and Use Records
  • Interfaces and Generics
  • Introduction to Java
  • Java Entry Level
  • Java Exceptions
  • Java Expert
  • Java IO API
  • Java LTS Series
  • Java Miscellaneous
  • Java Practitioner
  • Java Stream API
  • Nested Classes and Lambdas Expressions
  • Observability
  • Primitive types, Operators, and Flow control statements
  • Spring Tutorials
  • Text, Date, Time, and Numeric Objects

Tutorials

  • Core Java Tutorials
  • Spring Tutorials
  • DevOps

Courses

  • Java Entry Level
  • Java Practitioner
  • Java Advanced
  • Java Expert

Tutorials

  • Core Java Tutorials
  • Spring Tutorials
  • DevOps

Courses

  • Java Entry Level
  • Java Practitioner
  • Java Advanced
  • Java Expert

Social Media

  • LinkedIn
  • Twitter
  • Facebook
  • Youtube

About

  • About Kloudly Academy
  • Privacy Policy
  • Terms of Service
  • About Kloudly Academy
  • Privacy Policy
  • Terms of Service
Copyright 2026 - by Noel Kamphoa