blob: 700e6ce39800ebd74ecd6d5dca2f62a5511a1213 [file] [log] [blame]
///
/// 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';
}