📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 00:52:45
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
axios
/
lib
/
cancel
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/axios/lib/cancel
🔄 Refresh
✏️
Editing: CanceledError.js
Writable
'use strict'; import AxiosError from '../core/AxiosError.js'; import utils from '../utils.js'; /** * A `CanceledError` is an object that is thrown when an operation is canceled. * * @param {string=} message The message. * @param {Object=} config The config. * @param {Object=} request The request. * * @returns {CanceledError} The created error. */ function CanceledError(message, config, request) { // eslint-disable-next-line no-eq-null,eqeqeq AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request); this.name = 'CanceledError'; } utils.inherits(CanceledError, AxiosError, { __CANCEL__: true }); export default CanceledError;
💾 Save Changes
❌ Cancel