-
-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bogus: use file-scoped namespaces. (#521)
- Loading branch information
Showing
75 changed files
with
8,659 additions
and
8,735 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
using System; | ||
|
||
namespace Bogus | ||
namespace Bogus; | ||
|
||
/// <summary> | ||
/// General exception for Bogus. | ||
/// </summary> | ||
public class BogusException : Exception | ||
{ | ||
/// <summary> | ||
/// General exception for Bogus. | ||
/// </summary> | ||
public class BogusException : Exception | ||
public BogusException() | ||
{ | ||
public BogusException() | ||
{ | ||
} | ||
} | ||
|
||
public BogusException(string message) : base(message) | ||
{ | ||
} | ||
public BogusException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public BogusException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
} | ||
public BogusException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
} | ||
} |
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.