diff --git a/lib/src/exceptions.dart b/lib/src/exceptions.dart index 96cd0ee..6e67379 100644 --- a/lib/src/exceptions.dart +++ b/lib/src/exceptions.dart @@ -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);