Home Identifier Source Repository

lib/Resource/Exception/NotAuthenticatedException.js

/**
 * Created by mgoria on 11/03/15.
 */

'use strict';

import {Exception} from '../../Exception/Exception';

export class NotAuthenticatedException extends Exception {
  constructor() {
    super(
      `Missing authentication token! You may want to authenticate the user first(ex. security.anonymousLogin()).`
    );
  }
}