using System;
using System.Runtime.Serialization;
namespace Wasmtime
{
///
/// The base type for Wasmtime exceptions.
///
[System.Serializable]
public class WasmtimeException : Exception
{
///
public WasmtimeException() { }
///
public WasmtimeException(string message) : base(message) { }
///
public WasmtimeException(string message, Exception inner) : base(message, inner) { }
///
protected WasmtimeException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
}