Package org.onosproject.app
Class ApplicationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.onosproject.app.ApplicationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ApplicationException extends java.lang.RuntimeException
Represents class of errors related to application management.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplicationException()
Constructs an exception with no message and no underlying cause.ApplicationException(java.lang.String message)
Constructs an exception with the specified message.ApplicationException(java.lang.String message, java.lang.Throwable cause)
Constructs an exception with the specified message and the underlying cause.
-
-
-
Constructor Detail
-
ApplicationException
public ApplicationException()
Constructs an exception with no message and no underlying cause.
-
ApplicationException
public ApplicationException(java.lang.String message)
Constructs an exception with the specified message.- Parameters:
message
- the message describing the specific nature of the error
-
ApplicationException
public ApplicationException(java.lang.String message, java.lang.Throwable cause)
Constructs an exception with the specified message and the underlying cause.- Parameters:
message
- the message describing the specific nature of the errorcause
- the underlying cause of this error
-
-