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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/ApplicationException.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/ApplicationException.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/ApplicationException.cs b/src/System.Private.CoreLib/shared/System/ApplicationException.cs
index f36e2c127..cac29196b 100644
--- a/src/System.Private.CoreLib/shared/System/ApplicationException.cs
+++ b/src/System.Private.CoreLib/shared/System/ApplicationException.cs
@@ -39,13 +39,13 @@ namespace System
// message, its HRESULT set to COR_E_APPLICATION,
// and its ExceptionInfo reference set to null.
//
- public ApplicationException(String message)
+ public ApplicationException(string message)
: base(message)
{
HResult = HResults.COR_E_APPLICATION;
}
- public ApplicationException(String message, Exception innerException)
+ public ApplicationException(string message, Exception innerException)
: base(message, innerException)
{
HResult = HResults.COR_E_APPLICATION;