mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-04 13:57:37 +00:00
Initial commit
This commit is contained in:
parent
bc96ccb183
commit
18f89e91d4
62 changed files with 1661 additions and 2 deletions
11
vscode/Chapter06/PacktLibrary/PersonException.cs
Normal file
11
vscode/Chapter06/PacktLibrary/PersonException.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace Packt.Shared;
|
||||
|
||||
public class PersonException : Exception
|
||||
{
|
||||
public PersonException() : base() { }
|
||||
|
||||
public PersonException(string message) : base(message) { }
|
||||
|
||||
public PersonException(string message, Exception innerException)
|
||||
: base(message, innerException) { }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue