2023-10-31 11:47:27 -04:00

26 lines
616 B
C#
Executable File

using dotless.Core.Parser;
namespace dotless.Core.Exceptions
{
using System;
public class ParserException : Exception
{
public ParserException(string message)
: base(message)
{
}
public ParserException(string message, Exception innerException)
: base(message, innerException)
{
}
public ParserException(string message, Exception innerException, Zone errorLocation)
: base(message, innerException) {
ErrorLocation = errorLocation;
}
public Zone ErrorLocation { get; set; }
}
}