Skip to content

Commit

Permalink
feat: add unimplemented error message
Browse files Browse the repository at this point in the history
  • Loading branch information
HamdaanAliQuatil committed Sep 5, 2024
1 parent 10673c5 commit d16483a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/src/impl_stub/impl_stub.hmac.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ final class _StaticHmacSecretKeyImpl implements StaticHmacSecretKeyImpl {

@override
Future<HmacSecretKeyImpl> importRawKey(List<int> keyData, Hash hash, {int? length}) {
throw UnimplementedError();
throw UnimplementedError('Not implemented');
}

@override
Future<HmacSecretKeyImpl> importJsonWebKey(Map<String, dynamic> jwk, Hash hash, {int? length}) {
throw UnimplementedError();
throw UnimplementedError('Not implemented');
}

@override
Future<HmacSecretKeyImpl> generateKey(Hash hash, {int? length = 32}) {
throw UnimplementedError();
throw UnimplementedError('Not implemented');
}
}

0 comments on commit d16483a

Please sign in to comment.