2019-09-12 17:03:16 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace libpaperang {
|
2019-09-12 22:34:17 +01:00
|
|
|
|
|
|
|
|
|
public class PrinterNotInitialisedException : InvalidOperationException { }
|
|
|
|
|
public class PrinterNotAvailableException : NullReferenceException { }
|
2019-09-13 21:35:58 +01:00
|
|
|
|
public class PrinterConnectionNotSupportedException : NotSupportedException { }
|
2019-09-12 22:34:17 +01:00
|
|
|
|
public class PrinterVariantNotSupportedException : NotSupportedException { }
|
|
|
|
|
public class CrcNotAvailableException : MissingMemberException { }
|
|
|
|
|
public class InvalidOperationException : ArgumentOutOfRangeException { }
|
2019-09-12 17:03:16 +01:00
|
|
|
|
}
|