roadie/Roadie.Api.Library/AppException.cs

12 lines
196 B
C#
Raw Normal View History

2019-06-30 22:14:36 +00:00
using System;
namespace Roadie.Library
{
2019-06-30 22:14:36 +00:00
[Serializable]
public class AppException : Exception
{
2019-06-30 22:14:36 +00:00
public AppException(string message) : base(message)
{
}
}
}