Package ej.service
Class MissingServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ej.service.MissingServiceException
-
- All Implemented Interfaces:
Serializable
public class MissingServiceException extends RuntimeException
Thrown when a required service is missing.
-
-
Constructor Summary
Constructors Constructor Description MissingServiceException(String message)Constructs a new missing service exception with the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
MissingServiceException
public MissingServiceException(String message)
Constructs a new missing service exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
-