import { Exception } from "../../core"; /** * An exception indicating the session terminated before the action completed. * @public */ export class SessionTerminatedError extends Exception { public constructor() { super("The session has terminated."); } }