15 lines
400 B
C#
15 lines
400 B
C#
using RobotApp.VDA5050.State;
|
|
|
|
namespace RobotApp.Services.Exceptions;
|
|
|
|
public class ActionException : RobotExeption
|
|
{
|
|
public ActionException(string message) : base(message) { }
|
|
public ActionException(string message, Exception inner) : base(message, inner) { }
|
|
public ActionException() : base() { }
|
|
public ActionException(Error error) : base()
|
|
{
|
|
Error = error;
|
|
}
|
|
}
|