Deveel.Data.Sql.Statements.DeclareExceptionStatement.DeclareExceptionStatement C# (CSharp) Method

DeclareExceptionStatement() public method

public DeclareExceptionStatement ( string exceptionName ) : System
exceptionName string
return System
        public DeclareExceptionStatement(string exceptionName)
        {
            if (String.IsNullOrEmpty(exceptionName))
                throw new ArgumentNullException("exceptionName");

            ExceptionName = exceptionName;
        }

Same methods

DeclareExceptionStatement::DeclareExceptionStatement ( SerializationInfo info, StreamingContext context ) : System
DeclareExceptionStatement