All checks were successful
Run the JSON parser tests / test (push) Has been skipped
16 lines
316 B
C#
16 lines
316 B
C#
namespace Jtr.Parsing;
|
|
|
|
public class SyntaxException : Exception
|
|
{
|
|
public SyntaxException()
|
|
{
|
|
}
|
|
|
|
public SyntaxException(string? message) : base(message)
|
|
{
|
|
}
|
|
|
|
public SyntaxException(string? message, Exception? innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
} |