import { HttpException } from './http.exception'; export default class NotLoggedInException extends HttpException { constructor(message) { super(401, 'NotLoggedInException', message); } }