20 lines
478 B
C#
Raw Normal View History

2019-06-12 21:56:55 +02:00
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)
{
}
}
}