File size: 218 Bytes
3206347 |
1 2 3 4 5 6 7 8 9 10 |
import BaseError from './base.js';
export default class QuotaExceededError extends BaseError {
constructor(error = 'The allowed task quota has been exhausted!') {
super(error);
this.statusCode = 422;
}
}
|