import { VechainSDKError } from '../sdk-error'; import { type ObjectErrorData } from '../types'; /** * Invalid keystore error. * * WHEN TO USE: * * Error will be thrown when the keystore is invalid. */ class InvalidKeystore extends VechainSDKError {} /** * Invalid keystore params error. * * WHEN TO USE: * * Error will be thrown when the keystore params are invalid. */ class InvalidKeystoreParams extends VechainSDKError {} export { InvalidKeystore, InvalidKeystoreParams };