9 lines
304 B
C#
9 lines
304 B
C#
namespace RobotNet.RobotManager.Services.OpenACS;
|
|
|
|
public class OpenACSException : Exception
|
|
{
|
|
public OpenACSException() { }
|
|
public OpenACSException(string message) : base(message) { }
|
|
public OpenACSException(string message, Exception innerException) : base(message, innerException) { }
|
|
}
|