mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-04-22 02:56:31 +02:00
12 lines
209 B
C#
12 lines
209 B
C#
using System;
|
|
|
|
namespace CapnpC.CSharp.Generator.Model
|
|
{
|
|
class InvalidSchemaException : Exception
|
|
{
|
|
public InvalidSchemaException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|