mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
23 lines
502 B
C#
23 lines
502 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|