23 lines
526 B
C#
23 lines
526 B
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
namespace System
|
|
{
|
|
|
|
public class NotImplementedException : SystemException {
|
|
public NotImplementedException()
|
|
: base("Not implemented") {
|
|
}
|
|
|
|
public NotImplementedException(String message)
|
|
: base(message) {
|
|
}
|
|
|
|
public NotImplementedException(String message, Exception innerException)
|
|
: base(message, innerException) {
|
|
}
|
|
}
|
|
}
|