9 lines
299 B
JavaScript
9 lines
299 B
JavaScript
import { ServiceException as __ServiceException, } from "@smithy/smithy-client";
|
|
export { __ServiceException };
|
|
export class S3ServiceException extends __ServiceException {
|
|
constructor(options) {
|
|
super(options);
|
|
Object.setPrototypeOf(this, S3ServiceException.prototype);
|
|
}
|
|
}
|