using System;
namespace Veldrid.SPIRV
{
///
/// Represents errors that occur in the Veldrid.SPIRV library.
///
public class SpirvCompilationException : Exception
{
///
/// Constructs a new .
///
public SpirvCompilationException()
{
}
///
/// Constructs a new with the given message.
///
/// The error message.
public SpirvCompilationException(string message) : base(message)
{
}
///
/// Constructs a new with the given message and inner exception.
///
/// The error message.
/// The inner exception.
public SpirvCompilationException(string message, Exception innerException) : base(message, innerException)
{
}
}
}