roadie/Roadie.Api.Library/RoadieProcessingException.cs

24 lines
502 B
C#
Raw Normal View History

2020-06-21 20:39:14 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Roadie.Library
{
public sealed class RoadieProcessingException : Exception
{
public RoadieProcessingException() : base()
{
}
public RoadieProcessingException(string message)
: base(message)
{
}
public RoadieProcessingException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}