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