mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
16 lines
307 B
C#
16 lines
307 B
C#
using System;
|
|
|
|
namespace CUE.NET.Exceptions
|
|
{
|
|
public class WrapperException : ApplicationException
|
|
{
|
|
#region Constructors
|
|
|
|
public WrapperException(string message, Exception innerException = null)
|
|
: base(message, innerException)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|