rabidus-test/Assets/Plugins/QFSW/Quantum Console/Source/Scripts/Parsing/Exceptions/ParserException.cs

14 lines
358 B
C#
Raw Normal View History

2023-08-22 15:41:12 +03:00
using System;
namespace QFSW.QC
{
/// <summary>
/// Exception to be thrown by an IQcParser.
/// </summary>
public class ParserException : Exception
{
public ParserException(string message) : base(message) { }
public ParserException(string message, Exception innerException) : base(message, innerException) { }
}
}