ServiceFactoryException Constructor
ServiceFactoryException()
Initializes a new instance of the ServiceFactoryException class.
Declaration
public ServiceFactoryException()
ServiceFactoryException(String)
Initializes a new instance of the ServiceFactoryException class with a specified error message.
Declaration
public ServiceFactoryException(string message)
Parameters
String | message | The message that describes the error. |
ServiceFactoryException(Exception)
Initializes a new instance of the ServiceFactoryException class with a reference to the inner exception that is the cause of this exception.
Declaration
public ServiceFactoryException(Exception innerException)
Parameters
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |
ServiceFactoryException(String, Exception)
Initializes a new instance of the ServiceFactoryException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public ServiceFactoryException(string message, Exception innerException)
Parameters
String | message | The message that describes the error. |
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |