mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
24 lines
747 B
C#
24 lines
747 B
C#
using System;
|
|
|
|
namespace CUE.NET.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Represents an exception thrown by this SDK-Wrapper.
|
|
/// </summary>
|
|
public class WrapperException : ApplicationException
|
|
{
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="WrapperException"/> class.
|
|
/// </summary>
|
|
/// <param name="message">The message which describes the reason of throwing this exception.</param>
|
|
/// <param name="innerException">Optional inner exception, which lead to this exception.</param>
|
|
public WrapperException(string message, Exception innerException = null)
|
|
: base(message, innerException)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|