-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved several code analyzer issues
- Loading branch information
1 parent
1814bde
commit 2079aeb
Showing
9 changed files
with
58 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Namespace Exceptions | ||
|
||
#Disable Warning CA2237 ' Mark ISerializable types with serializable | ||
#Disable Warning CA1032 ' Implement standard exception constructors | ||
Public Class StepException | ||
|
||
#Enable Warning CA1032 ' Implement standard exception constructors | ||
#Enable Warning CA2237 ' Mark ISerializable types with serializable | ||
Inherits System.Exception | ||
|
||
Public Sub New(message As String) | ||
MyBase.New(message) | ||
End Sub | ||
|
||
Public Sub New(message As String, innerException As Exception) | ||
MyBase.New(message, innerException) | ||
End Sub | ||
|
||
End Class | ||
|
||
End Namespace |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.