// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System {
using System;
//|
public class SystemException : Exception
{
//|
public SystemException()
: base("Arg_SystemException") {
}
//|
public SystemException(String message)
: base(message) {
}
//|
public SystemException(String message, Exception innerException)
: base(message, innerException) {
}
}
}