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