Files
angelc2/full/Angel-payload/angel/utils/cryptography/exceptions.d
2025-12-22 16:23:48 +01:00

36 lines
557 B
D

module angel.utils.cryptography.exceptions;
@safe
public class InvalidKeyException : Exception {
pure this(string msg) {
super(msg);
}
}
@safe
public class IllegalArgumentException : Exception {
pure this(string msg) {
super(msg);
}
}
@safe
public class InvalidParameterException : Exception {
pure this(string msg) {
super(msg);
}
}
@safe
public class InvalidCipherTextException : Exception {
pure this(string msg) {
super(msg);
}
}
@safe
public class MaxBytesExceededException : Exception {
pure this(string msg) {
super(msg);
}
}