16 lines
329 B
C#
16 lines
329 B
C#
namespace DevDisciples.Parsing;
|
|
|
|
public class ParsingException : Exception
|
|
{
|
|
public ParsingException()
|
|
{
|
|
}
|
|
|
|
public ParsingException(string? message) : base(message)
|
|
{
|
|
}
|
|
|
|
public ParsingException(string? message, Exception? innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
} |