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