11 lines
218 B
Plaintext
11 lines
218 B
Plaintext
import {FetchBaseError} from './base.js';
|
|
|
|
/**
|
|
* AbortError interface for cancelled requests
|
|
*/
|
|
export class AbortError extends FetchBaseError {
|
|
constructor(message, type = 'aborted') {
|
|
super(message, type);
|
|
}
|
|
}
|