mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2025-02-15 02:12:35 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|