Christian Köllner cbf2144ef4 Initial commit
2019-06-12 21:56:55 +02:00

20 lines
478 B
C#

using System;
namespace Capnp
{
/// <summary>
/// This exception gets thrown when a Cap'n Proto object could not be deserialized correctly.
/// </summary>
public class DeserializationException : Exception
{
public DeserializationException(string message) : base(message)
{
}
public DeserializationException(string message, Exception innerException):
base(message, innerException)
{
}
}
}