RobotApp/RobotApp/Services/Exceptions/PathPlannerException.cs
Đăng Nguyễn a01f140f2e update
2025-10-24 10:24:59 +07:00

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;
}
}