hi can any one pls give me simple example for creating and using UserDefined Exceptions in java
thanks in advance SS
feedback
|
|
To define a checked exception you create a subclass (or hierarchy of subclasses) of java.lang.Exception. For example:
Methods that can potentially throw or propagate this exception must declare it:
... and code calling this method must either handle or propagate this exception (or both):
You'll notice in the above example that Sometimes there will be situations where you don't want to force every method to declare your exception implementation in its throws clause. In this case you can create an unchecked exception. An unchecked exception is any exception that extends java.lang.RuntimeException (which itself is a subclass of
Methods can throw or propagate
Unchecked exceptions are typically used to denote a programmer error, for example passing an invalid argument to a method or attempting to breach an array index bounds. The java.lang.Throwable class is the root of all errors and exceptions that can be thrown within Java. | ||||
|
feedback
|
Throw it as:
Catch as:
| |||
|
feedback
|
|
For a checked exception:
Technically, anything that extends You can also make exceptions non-public, but then you can only use them in the package that defines them, as opposed to across packages. As far as throwing/catching custom exceptions, it works just like the built-in ones - throw via
and catch via
| |||||||||||||||
feedback
|