11 lines
No EOL
204 B
C#
11 lines
No EOL
204 B
C#
using System;
|
|
|
|
namespace WingsAPI.Scripting
|
|
{
|
|
public class InvalidScriptException : Exception
|
|
{
|
|
public InvalidScriptException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
} |