Package graph
Klasse NameDoesNotExistException
java.lang.Object
java.lang.Throwable
java.lang.Exception
graph.NameDoesNotExistException
- Alle implementierten Schnittstellen:
Serializable
Exception thrown when a user attempts to access a non-existent vertex by name.
- Siehe auch:
-
Konstruktorübersicht
KonstruktorBeschreibungConstructs a new NameDoesNotExistException with no detail message.NameDoesNotExistException
(String message) Constructs a new NameDoesNotExistException with the specified detail message.NameDoesNotExistException
(String message, Throwable cause) Constructs a new NameDoesNotExistException with the specified detail message and cause.Constructs a new NameDoesNotExistException with the specified cause and a detail message that includes the cause's description. -
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
NameDoesNotExistException
public NameDoesNotExistException()Constructs a new NameDoesNotExistException with no detail message. -
NameDoesNotExistException
Constructs a new NameDoesNotExistException with the specified detail message.- Parameter:
message
- The detail message.
-
NameDoesNotExistException
Constructs a new NameDoesNotExistException with the specified detail message and cause.- Parameter:
message
- The detail message.cause
- The cause of the exception.
-
NameDoesNotExistException
Constructs a new NameDoesNotExistException with the specified cause and a detail message that includes the cause's description.- Parameter:
cause
- The cause of the exception.
-