Package org.onlab.util
Class ItemNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.onlab.util.ItemNotFoundException
-
- All Implemented Interfaces:
Serializable
public class ItemNotFoundException extends RuntimeException
Represents condition where an item is not found or not available.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ItemNotFoundException()
Creates a new exception with no message.ItemNotFoundException(String message)
Creates a new exception with the supplied message.ItemNotFoundException(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
-
ItemNotFoundException
public ItemNotFoundException()
Creates a new exception with no message.
-
ItemNotFoundException
public ItemNotFoundException(String message)
Creates a new exception with the supplied message.- Parameters:
message
- error message
-
-