If I declare class
Class MyOwnException extends Exception
{
}
Is this is a checked or unchecked exception?
|
|
If I declare class
Is this is a checked or unchecked exception?
|
||
|
|
|
|
The exception you have shown is a checked exception and must either be caught or declared as The alternative would be an un-checked exception, which is declared as follows:
While it's not strictly adhered to, extending |
||||
|
|
|
If you extend Exception then it is "checked", i.e if you throw it, it must be caught or declared in the method signature. Unchecked exceptions extend RuntimeException and do not need to be declared or caught. It is also possible to create an unchecked exception by extending Error or one of its subclasses, but these exceptions are by convention reserved for use by the JDK. |
|||
|
|
|
|
All exceptions in Java are checked. This means that must be explicitly catched in a try-catch block. Runtime exceptions need not be caught (java.lang.RuntimeException). The same applies for errors (java.lang.Error). Therefore your Exception is checked. If you want to make it unchecked, subclass RuntimeException. |
|||
|
|