mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
12 lines
283 B
C#
12 lines
283 B
C#
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) { }
|
|
}
|