summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/InsufficientMemoryException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/InsufficientMemoryException.cs')
-rw-r--r--src/mscorlib/src/System/InsufficientMemoryException.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mscorlib/src/System/InsufficientMemoryException.cs b/src/mscorlib/src/System/InsufficientMemoryException.cs
index eb5e4d7430..8f7aa96ff7 100644
--- a/src/mscorlib/src/System/InsufficientMemoryException.cs
+++ b/src/mscorlib/src/System/InsufficientMemoryException.cs
@@ -22,7 +22,6 @@ using System.Runtime.Serialization;
namespace System
{
- [Serializable]
public sealed class InsufficientMemoryException : OutOfMemoryException
{
public InsufficientMemoryException()
@@ -42,9 +41,5 @@ namespace System
{
HResult = __HResults.COR_E_INSUFFICIENTMEMORY;
}
-
- private InsufficientMemoryException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
}
}