12 lines
192 B
C#
Raw Normal View History

2019-06-12 21:56:55 +02:00
using System;
namespace CapnpC.Model
{
class InvalidSchemaException : Exception
{
public InvalidSchemaException(string message) : base(message)
{
}
}
}