CmisSync.Lib.Events.ExceptionEvent.ExceptionEvent C# (CSharp) Method

ExceptionEvent() public method

Initializes a new instance of the CmisSync.Lib.Events.ExceptionEvent class.
public ExceptionEvent ( Exception e ) : System
e System.Exception /// The exception, which should be embedded. Must not be null. ///
return System
        public ExceptionEvent(Exception e) {
            if (e == null) {
                throw new ArgumentNullException("e");
            }

            this.Exception = e;
        }