mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
12 lines
No EOL
196 B
C#
12 lines
No EOL
196 B
C#
using System;
|
|
|
|
namespace Roadie.Library
|
|
{
|
|
[Serializable]
|
|
public class AppException : Exception
|
|
{
|
|
public AppException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
} |