13 lines
319 B
C#
13 lines
319 B
C#
namespace AutoAgent.Domain.Exceptions
|
|
{
|
|
public class CaptureException : DomainException
|
|
{
|
|
public CaptureException(string message) : base(message) { }
|
|
}
|
|
|
|
public class CaptureAreaException : CaptureException
|
|
{
|
|
public CaptureAreaException(string message) : base(message) { }
|
|
}
|
|
}
|