26 lines
616 B
C#
Executable File
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; }
|
|
}
|
|
} |