forked from dotless/dotless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParsingException.cs
26 lines (20 loc) · 1.06 KB
/
ParsingException.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace dotless.Core.Exceptions
{
using System;
using dotless.Core.Parser;
public class ParsingException : Exception
{
public NodeLocation Location { get; set; }
public NodeLocation CallLocation { get; set; }
public ParsingException(string message, NodeLocation location) : this(message, null, location, null) { }
public ParsingException(string message, NodeLocation location, NodeLocation callLocation) : this(message, null, location, callLocation) { }
public ParsingException(Exception innerException, NodeLocation location) : this(innerException, location, null) { }
public ParsingException(Exception innerException, NodeLocation location, NodeLocation callLocation) : this(innerException.Message, innerException, location, callLocation) { }
public ParsingException(string message, Exception innerException, NodeLocation location, NodeLocation callLocation)
: base(message, innerException)
{
Location = location;
CallLocation = callLocation;
}
}
}