mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
12 lines
192 B
C#
12 lines
192 B
C#
using System;
|
|
|
|
namespace CapnpC.Model
|
|
{
|
|
class InvalidSchemaException : Exception
|
|
{
|
|
public InvalidSchemaException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|