MitocGroup/deep-framework

View on GitHub
src/deep-resource/lib/Resource/Exception/NotAuthenticatedException.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * 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()).'
    );
  }
}