roadie/Roadie.Api.Library/AppException.cs
2019-06-30 17:14:36 -05:00

12 lines
No EOL
196 B
C#

using System;
namespace Roadie.Library
{
[Serializable]
public class AppException : Exception
{
public AppException(string message) : base(message)
{
}
}
}