summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SEHException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SEHException.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SEHException.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SEHException.cs b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SEHException.cs
index f62f9e9dc6..85e900b3ca 100644
--- a/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SEHException.cs
+++ b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SEHException.cs
@@ -8,7 +8,7 @@ namespace System.Runtime.InteropServices
{
/// <summary>
/// Exception for Structured Exception Handler exceptions.
- /// </summary>
+ /// </summary>
[Serializable]
[System.Runtime.CompilerServices.TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
public class SEHException : ExternalException
@@ -19,13 +19,13 @@ namespace System.Runtime.InteropServices
HResult = HResults.E_FAIL;
}
- public SEHException(String message)
+ public SEHException(string message)
: base(message)
{
HResult = HResults.E_FAIL;
}
- public SEHException(String message, Exception inner)
+ public SEHException(string message, Exception inner)
: base(message, inner)
{
HResult = HResults.E_FAIL;