class SessionError extends Error {
    constructor(message: string) {
        super(message);
        this.name = 'StropheSessionError';
    }
}

export { SessionError };
