Closed roynrishingha closed 10 months ago
I tried it on my local, same getting error
export class InvalidDidFormatError extends SDKError {
constructor(did: string, options?: ErrorOptions) {
super(`Not a valid CORD DID "${did}"`, options)
}
}
where we are passing two argument it is giving the error. but if we see defination any no. of argument are possible
export class SDKError extends Error {
constructor(...args: ConstructorParameters<ErrorConstructor>) {
super(...args)
this.name = this.constructor.name
}
}
My current setup
Branch
dev-0.8.0
The error message I'm receiving