Class ArgumentStringEmptyException
Exception thrown if one of the string arguments provided to a method is empty but the method does not accept
an empty string argument.
Namespace: XploRe.Runtime
Assembly: XploRe.Runtime.dll
Syntax
public class ArgumentStringEmptyException : ArgumentException
Constructors
Name | Description |
---|---|
ArgumentStringEmptyException() | Initialises a new ArgumentStringEmptyException instance with the default error message. |
ArgumentStringEmptyException(Exception) | Initialises a new ArgumentStringEmptyException instance with the default error message and a reference to the inner exception that is the cause of this exception. |
ArgumentStringEmptyException(String) | Initialises a new ArgumentStringEmptyException instance with the default error message and the name of the parameter that causes this exception. |
ArgumentStringEmptyException(String, Exception) | Initialises a new ArgumentStringEmptyException instance with the default error message, the parameter name and a reference to the inner exception that is the cause of this exception. |
ArgumentStringEmptyException(String, String) | Initialises a new ArgumentStringEmptyException instance with a specified error message and the name of the parameter that causes this exception. |
ArgumentStringEmptyException(String, String, Exception) | Initialises a new ArgumentStringEmptyException instance with a specified error message, the parameter name and a reference to the inner exception that is the cause of this exception. |