12 lines
164 B
C#
12 lines
164 B
C#
using System;
|
|
|
|
namespace Needle.Engine
|
|
{
|
|
public class AbortExportException : Exception
|
|
{
|
|
public AbortExportException(string msg) : base(msg)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |