Upload files to "/"
This commit is contained in:
36
exceptions.d
Normal file
36
exceptions.d
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user