Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What is a custom exception in Java?
A custom exception is a user-defined class that extends the Exception class (or its subclasses) to create specific error types for your program.
Click to reveal answer
beginner
How do you define a custom checked exception?
Create a class that extends Exception and provide constructors to pass error messages or causes.
Click to reveal answer
beginner
How do you throw a custom exception in Java?
Use the throw keyword followed by an instance of your custom exception, e.g., throw new MyException("Error message");
Click to reveal answer
intermediate
What is the difference between checked and unchecked custom exceptions?
Checked exceptions extend Exception and must be declared or handled. Unchecked exceptions extend RuntimeException and do not require explicit handling.
Click to reveal answer
intermediate
Why create custom exceptions instead of using standard exceptions?
Custom exceptions make your code clearer by signaling specific problems related to your application logic, improving error handling and debugging.
Click to reveal answer
Which keyword is used to throw a custom exception in Java?
Athrow
Bthrows
Ccatch
Dtry
✗ Incorrect
The 'throw' keyword is used to actually throw an exception instance.
To create a checked custom exception, your class should extend which class?
ARuntimeException
BError
CThrowable
DException
✗ Incorrect
Checked exceptions extend Exception but not RuntimeException.
What must you do when a method throws a checked custom exception?
ADeclare it with throws or handle it with try-catch
BIgnore it
COnly declare it with throws, no handling needed
DUse finally block only
✗ Incorrect
Checked exceptions require declaration or handling.
Which of these is NOT a reason to create a custom exception?
ATo make error messages more specific
BTo handle errors related to your application logic
CTo replace all standard exceptions
DTo improve debugging
✗ Incorrect
Custom exceptions complement, not replace, standard exceptions.
Which class should a custom unchecked exception extend?
AException
BRuntimeException
CError
DThrowable
✗ Incorrect
Unchecked exceptions extend RuntimeException.
Explain how to create and throw a custom checked exception in Java.
Think about class inheritance and method declaration.
You got /4 concepts.
Why is it useful to create custom exceptions instead of using only built-in exceptions?
Consider how specific error types help programmers.
You got /4 concepts.
Practice
(1/5)
1. What is the main purpose of throwing a custom exception in Java?
easy
A. To speed up the program execution.
B. To automatically fix errors in the program.
C. To create a specific error type with a clear message for better error handling.
D. To avoid writing any error handling code.
Solution
Step 1: Understand what custom exceptions do
Custom exceptions let programmers define specific error types that describe particular problems clearly.
Step 2: Identify the purpose of throwing them
Throwing a custom exception signals a specific error condition, making it easier to catch and handle that error properly.
Final Answer:
To create a specific error type with a clear message for better error handling. -> Option C
Quick Check:
Custom exceptions improve error clarity = A [OK]
Hint: Custom exceptions clarify errors for better handling [OK]
Common Mistakes:
Thinking exceptions fix errors automatically
Believing exceptions speed up code
Assuming exceptions remove need for error handling
2. Which of the following is the correct syntax to throw a custom exception named MyException?
easy
A. throw new MyException();
B. throw MyException();
C. throw exception MyException();
D. throw exception new MyException();
Solution
Step 1: Recall Java syntax for throwing exceptions
In Java, to throw an exception, you use the keyword throw followed by new and the exception class constructor.
Step 2: Match the syntax with the options
Only throw new MyException(); uses the correct syntax: throw new MyException();
Final Answer:
throw new MyException(); -> Option A
Quick Check:
Throw syntax = throw new Exception() [OK]
Hint: Always use 'throw new ExceptionName()' to throw exceptions [OK]
Common Mistakes:
Omitting the 'new' keyword
Adding extra keywords like 'exception'
Using parentheses without 'new'
3. What will be the output of the following Java code?
class MyException extends Exception {
public MyException(String message) {
super(message);
}
}
public class Test {
public static void check(int num) throws MyException {
if (num < 0) {
throw new MyException("Negative number not allowed");
} else {
System.out.println("Number is " + num);
}
}
public static void main(String[] args) {
try {
check(-5);
} catch (MyException e) {
System.out.println(e.getMessage());
}
}
}
medium
A. Negative number not allowed
B. Compilation error
C. Number is -5
D. No output
Solution
Step 1: Analyze the check method behavior
If the input number is less than 0, it throws a MyException with message "Negative number not allowed"; otherwise, it prints the number.
Step 2: Follow the main method execution
Main calls check(-5), which triggers the exception because -5 < 0. The exception is caught and its message is printed.
Final Answer:
Negative number not allowed -> Option A
Quick Check:
Exception message printed = C [OK]
Hint: Exception message prints when thrown and caught [OK]
Common Mistakes:
Expecting the number to print despite exception
Thinking code causes compilation error
Ignoring exception catch block
4. Identify the error in the following code snippet that throws a custom exception:
class MyException extends Exception {}
public class Demo {
public static void test() {
throw new MyException();
}
}
medium
A. No error; code is correct.
B. Missing 'throws' declaration in method signature.
C. Incorrect syntax for throwing exception.
D. Cannot extend Exception class.
Solution
Step 1: Check method signature for checked exceptions
Since MyException extends Exception (a checked exception), the method must declare it with throws MyException.
Step 2: Identify missing throws declaration
The method test() throws MyException but does not declare it, causing a compilation error.
Final Answer:
Missing 'throws' declaration in method signature. -> Option B
Hint: Add 'throws ExceptionName' when throwing checked exceptions [OK]
Common Mistakes:
Forgetting 'throws' in method signature
Thinking all exceptions are unchecked
Assuming extending Exception is invalid
5. You want to create a checked custom exception InvalidAgeException that should be thrown when age is less than 18. Which of the following code snippets correctly defines and throws this exception inside a method validateAge?
hard
A. class InvalidAgeException extends Exception {
public InvalidAgeException() {}
}
void validateAge(int age) {
if (age < 18) throw new InvalidAgeException();
}
B. class InvalidAgeException {
public InvalidAgeException(String msg) { super(msg); }
}
void validateAge(int age) {
if (age < 18) throw new InvalidAgeException("Age must be 18 or older");
}
C. class InvalidAgeException extends RuntimeException {
public InvalidAgeException() {}
}
void validateAge(int age) {
if (age < 18) throw new InvalidAgeException();
}
D. class InvalidAgeException extends Exception {
public InvalidAgeException(String msg) { super(msg); }
}
void validateAge(int age) throws InvalidAgeException {
if (age < 18) throw new InvalidAgeException("Age must be 18 or older");
}
Solution
Step 1: Define a checked exception with message constructor
class InvalidAgeException extends Exception {
public InvalidAgeException(String msg) { super(msg); }
}
void validateAge(int age) throws InvalidAgeException {
if (age < 18) throw new InvalidAgeException("Age must be 18 or older");
} correctly extends Exception and defines a constructor that accepts a message, calling super(msg).
Step 2: Throw exception with message and declare it
The method validateAge throws InvalidAgeException when age < 18 and declares it with throws InvalidAgeException.
Final Answer:
class InvalidAgeException extends Exception {
public InvalidAgeException(String msg) { super(msg); }
}
void validateAge(int age) throws InvalidAgeException {
if (age < 18) throw new InvalidAgeException("Age must be 18 or older");
} -> Option D
Quick Check:
Checked exception needs constructor, throw, and throws declaration [OK]
Hint: Checked exceptions need constructor, throw, and throws declaration [OK]