All files / app/shipping/errors AssignItemFailedError.ts

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 155x 5x   5x                   5x  
import { setPrototypeOf, CustomError } from '../../common/error';
import { getLanguageService } from '../../locale';
 
export default class AssignItemFailedError extends CustomError {
    constructor(data: Error) {
        super({
            name: 'ASSIGN_ITEM_FAILED',
            message: getLanguageService().translate('shipping.assign_item_error'),
            data,
        });
 
        setPrototypeOf(this, AssignItemFailedError.prototype);
    }
}