Spring.Transaction.Interceptor.RollbackRuleAttribute.RollbackRuleAttribute C# (CSharp) Method

RollbackRuleAttribute() public method

Creates a new instance of the Spring.Transaction.Interceptor.RollbackRuleAttribute class for the named exceptionName.

As always, the exceptionName should be the full assembly qualified version.

public RollbackRuleAttribute ( string exceptionName ) : System
exceptionName string The exception name.
return System
		public RollbackRuleAttribute( string exceptionName )
		{
            AssertUtils.ArgumentHasText(exceptionName, "exceptionName");
			_exceptionName = exceptionName;
		}

Same methods

RollbackRuleAttribute::RollbackRuleAttribute ( Type exceptionType ) : System