Package org.onlab.osgi
Class ServiceNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.onlab.osgi.ServiceNotFoundException
-
- All Implemented Interfaces:
Serializable
public class ServiceNotFoundException extends RuntimeException
Represents condition where some service is not found or not available.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceNotFoundException()
Creates a new exception with no message.ServiceNotFoundException(String message)
Creates a new exception with the supplied message.ServiceNotFoundException(String message, Throwable cause)
Creates a new exception with the supplied message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ServiceNotFoundException
public ServiceNotFoundException()
Creates a new exception with no message.
-
ServiceNotFoundException
public ServiceNotFoundException(String message)
Creates a new exception with the supplied message.- Parameters:
message
- error message
-
-