Package org.ametys.core.datasource
Class UnknownDataSourceException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.lang.RuntimeException
 - 
- org.ametys.core.datasource.UnknownDataSourceException
 
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class UnknownDataSourceException extends RuntimeException
Exception representing the absence of a data source- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description UnknownDataSourceException()Constructor without argumentsUnknownDataSourceException(String msg)Constructor with a messageUnknownDataSourceException(String msg, Throwable cause)Constructor with the message and the causeUnknownDataSourceException(Throwable cause)Constructor with the message and the 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
- 
UnknownDataSourceException
public UnknownDataSourceException()
Constructor without arguments 
- 
UnknownDataSourceException
public UnknownDataSourceException(String msg)
Constructor with a message- Parameters:
 msg- The exception message
 
- 
UnknownDataSourceException
public UnknownDataSourceException(Throwable cause)
Constructor with the message and the cause- Parameters:
 cause- the cause of the exception
 
- 
UnknownDataSourceException
public UnknownDataSourceException(String msg, Throwable cause)
Constructor with the message and the cause- Parameters:
 msg- the exception messagecause- the cause of the exception
 
 - 
 
 -