public class InjectionException
extends java.lang.RuntimeException
Constructor and Description |
---|
InjectionException(java.lang.String message)
Constructs a new injection exception with the specified detail message.
|
InjectionException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new injection exception with the specified detail message and cause.
|
InjectionException(java.lang.Throwable cause)
Constructs a new injection exception with the specified cause and a
detail message of
(cause==null ? null : cause.toString()) |
public InjectionException(java.lang.String message)
message
- the detail messagepublic InjectionException(java.lang.String message, java.lang.Throwable cause)
message
- the detail messagecause
- the cause, may be null (indicating nonexistent or unknown cause)public InjectionException(java.lang.Throwable cause)
(cause==null ? null : cause.toString())
cause
- the cause, may be null (indicating nonexistent or unknown cause)