using System;
namespace CUE.NET.Exceptions
{
///
/// Represents an exception thrown by this SDK-Wrapper.
///
public class WrapperException : ApplicationException
{
#region Constructors
///
/// Initializes a new instance of the class.
///
/// The message which describes the reason of throwing this exception.
/// Optional inner exception, which lead to this exception.
public WrapperException(string message, Exception innerException = null)
: base(message, innerException)
{ }
#endregion
}
}