12 lines
362 B
Dart
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';
|
|
}
|