Initiliazation

This commit is contained in:
2025-12-22 16:23:48 +01:00
parent 7a8b6d451d
commit b29e6179f3
165 changed files with 28070 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
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);
}
}