singrdk/base/Applications/Runtime/Full/System/SystemException.cs

29 lines
830 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
namespace System
{
2008-03-05 09:52:00 -05:00
using System;
//| <include path='docs/doc[@for="SystemException"]/*' />
public class SystemException : Exception
{
//| <include path='docs/doc[@for="SystemException.SystemException"]/*' />
public SystemException()
: base("Arg_SystemException") {
}
//| <include path='docs/doc[@for="SystemException.SystemException1"]/*' />
public SystemException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="SystemException.SystemException2"]/*' />
public SystemException(String message, Exception innerException)
: base(message, innerException) {
}
}
}