Constructors Summary |
---|
public MethodNotFoundException()Creates a MethodNotFoundException with no detail message.
super ();
|
public MethodNotFoundException(String message)Creates a MethodNotFoundException with the provided
detail message.
super (message);
|
public MethodNotFoundException(Throwable exception)Creates a MethodNotFoundException with the given root
cause.
super (exception);
|
public MethodNotFoundException(String pMessage, Throwable pRootCause)Creates a MethodNotFoundException with the given detail
message and root cause.
super (pMessage, pRootCause);
|