| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // System.IO.ErrorEventArgs.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- namespace System.IO {
- public class ErrorEventArgs : EventArgs {
- #region Fields
- Exception exception;
- #endregion // Fields
- #region Constructors
- public ErrorEventArgs (Exception exception)
- {
- this.exception = exception;
- }
-
- #endregion // Constructors
- #region Methods
- public virtual Exception GetException ()
- {
- return exception;
- }
- #endregion // Methods
- }
- }
|