Constructors Summary |
---|
public ProviderException(String msg)Constructs a new instance of {@code ProviderException} with the given
message.
super(msg);
|
public ProviderException()Constructs a new instance of {@code ProviderException}.
|
public ProviderException(String message, Throwable cause)Constructs a new instance of {@code ProviderException} with the given
message and the cause.
super(message, cause);
|
public ProviderException(Throwable cause)Constructs a new instance of {@code ProviderException} with the cause.
super(cause);
|