twonly-app-dependencies/pointycastle/lib/asn1/unsupported_object_identifier_exception.dart
2025-12-07 16:10:41 +01:00

12 lines
362 B
Dart

///
/// Exception that indicates that the given object identifier is not supported
///
class UnsupportedObjectIdentifierException implements Exception {
String? oiString;
UnsupportedObjectIdentifierException(this.oiString);
@override
String toString() =>
'UnsupportedObjectIdentifierException: ObjectIdentifier $oiString is not supported yet';
}