mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2025-02-12 00:43:00 +01:00
10 lines
205 B
C#
10 lines
205 B
C#
|
namespace MoreChartFormats.Simai.Errors
|
||
|
{
|
||
|
public class UnterminatedSectionException : SimaiException
|
||
|
{
|
||
|
public UnterminatedSectionException(int line, int character) : base(line, character)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|