You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{Domain}from'@bitloops/bl-boilerplate-core';import{AccountStatusVO}from'undefined';exportclassAccountIsBlockedErrorextendsDomain.Error{staticreadonlyerrorId: string='DRIVER_ACCOUNT_IS_BLOCKED';constructor(accountId: string,accountStatus: AccountStatusVO){super(`Account ${accountId} is ${accountStatus.status}. Please contact support.`,AccountIsBlockedError.errorId);}}
I presume this is caused because when are resolving the imports, we try to find the classtype from the identifier, and perhaps we can't resolve the AccountIsBlockedError as DomainError. Could be something else though, needs investigation.
The text was updated successfully, but these errors were encountered:
BL Example
TS Output
I presume this is caused because when are resolving the imports, we try to find the classtype from the identifier, and perhaps we can't resolve the AccountIsBlockedError as DomainError. Could be something else though, needs investigation.
The text was updated successfully, but these errors were encountered: