Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using RobotNet.VDA5050.State;
|
||||
using RobotNet10.RobotApp.Services.Robot;
|
||||
|
||||
namespace RobotNet10.RobotApp.Services.Exceptions;
|
||||
|
||||
public class SimulationException : RobotException
|
||||
{
|
||||
public SimulationException(string message) : base(message) { }
|
||||
public SimulationException(string message, Exception inner) : base(message, inner) { }
|
||||
public SimulationException() : base() { }
|
||||
public SimulationException(RobotError error) : base()
|
||||
{
|
||||
Error = error;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user