Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobody <nobody@localhost>2002-08-21 14:08:33 +0400
committernobody <nobody@localhost>2002-08-21 14:08:33 +0400
commit4e4824afab6cd0f9f0d71aa6baeddb7bee74f8c4 (patch)
tree4f2f12d32cc0fbc38f5ae17dd88b54f7f7d4773b /mcs/class/System/System.IO/ErrorEventArgs.cs
parent5a04c908e923e4d919c9c0aed1129f8416adb6cc (diff)
This commit was manufactured by cvs2svn to create branch 'SAVANNAH_CVS'.RHYS_20020821
svn path=/branches/SAVANNAH_CVS/mcs/; revision=6844
Diffstat (limited to 'mcs/class/System/System.IO/ErrorEventArgs.cs')
-rw-r--r--mcs/class/System/System.IO/ErrorEventArgs.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/mcs/class/System/System.IO/ErrorEventArgs.cs b/mcs/class/System/System.IO/ErrorEventArgs.cs
deleted file mode 100644
index 49bc2c08677..00000000000
--- a/mcs/class/System/System.IO/ErrorEventArgs.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-//
-// System.IO.ErrorEventArgs.cs
-//
-// Author:
-// Tim Coleman (tim@timcoleman.com)
-//
-// 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
- }
-}