Add platform exception

This commit is contained in:
Hugo Pointcheval 2020-04-18 11:28:47 +02:00
parent b95c88b708
commit 791b42afe1

View File

@ -16,6 +16,11 @@ class DecryptionException implements Exception {
DecryptionException(this.error);
}
class PlatformException implements Exception {
String error;
PlatformException(this.error);
}
class NotImplementedException implements Exception {
String error;
NotImplementedException(this.error);