16 lines
499 B
C#
16 lines
499 B
C#
using RobotNet.VDA5050.State;
|
|
using RobotNet10.RobotApp.Services.Robot;
|
|
|
|
namespace RobotNet10.RobotApp.Services.Exceptions;
|
|
|
|
public class PathPlannerException : RobotException
|
|
{
|
|
public PathPlannerException(string message) : base(message) { }
|
|
public PathPlannerException(string message, Exception inner) : base(message, inner) { }
|
|
public PathPlannerException() : base() { }
|
|
public PathPlannerException(RobotError error) : base()
|
|
{
|
|
Error = error;
|
|
}
|
|
}
|