33 lines
816 B
C#
33 lines
816 B
C#
|
|
using System;
|
||
|
|
using System.Runtime.Serialization;
|
||
|
|
|
||
|
|
namespace GitHub.Runner.Worker
|
||
|
|
{
|
||
|
|
public class ActionNotFoundException : Exception
|
||
|
|
{
|
||
|
|
public ActionNotFoundException(Uri actionUri)
|
||
|
|
: base(FormatMessage(actionUri))
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public ActionNotFoundException(string message)
|
||
|
|
: base(message)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public ActionNotFoundException(string message, System.Exception inner)
|
||
|
|
: base(message, inner)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected ActionNotFoundException(SerializationInfo info, StreamingContext context)
|
||
|
|
: base(info, context)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
private static string FormatMessage(Uri actionUri)
|
||
|
|
{
|
||
|
|
return $"An action could not be found at the URI '{actionUri}'";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|