java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.pustike.inject.NoSuchBindingException
- All Implemented Interfaces:
Serializable
public class NoSuchBindingException extends RuntimeException
Indicates that there was a runtime failure while providing an instance.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description NoSuchBindingException(String message)
Constructs a new exception with the specified detail message.NoSuchBindingException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.NoSuchBindingException(Throwable cause)
Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoSuchBindingException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail exception message
-
NoSuchBindingException
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause (A null value is permitted, and indicates that the cause is nonexistent or unknown)
-
NoSuchBindingException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail exception messagecause
- the cause (A null value is permitted, and indicates that the cause is nonexistent or unknown)
-