All files / app/shipping/errors UnassignItemError.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 UnassignItemError extends CustomError {
    constructor(data: Error) {
        super({
            name: 'UNASSIGN_ITEM_FAILED',
            message: getLanguageService().translate('shipping.unassign_item_error'),
            data,
        });
 
        setPrototypeOf(this, UnassignItemError.prototype);
    }
}