Package de.gebit.integrity.exceptions
Class MethodNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.gebit.integrity.exceptions.MethodNotFoundException
-
- All Implemented Interfaces:
Serializable
public class MethodNotFoundException extends Exception
Checked exception to throw if a method has not been found. This is designed to be a counterpart forClassNotFoundException
, just covering methods instead of classes.- Author:
- Rene Schneider - initial API and implementation
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MethodNotFoundException()
Creates an instance.MethodNotFoundException(String aMessage)
Creates an instance.MethodNotFoundException(String aMessage, Throwable aCause)
Creates an instance.MethodNotFoundException(Throwable aCause)
Creates an instance.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MethodNotFoundException
public MethodNotFoundException()
Creates an instance.
-
MethodNotFoundException
public MethodNotFoundException(String aMessage, Throwable aCause)
Creates an instance.
-
MethodNotFoundException
public MethodNotFoundException(String aMessage)
Creates an instance.
-
MethodNotFoundException
public MethodNotFoundException(Throwable aCause)
Creates an instance.
-
-