MitocGroup/deep-framework

View on GitHub
src/deep-kernel/lib/Microservice/Exception/MissingWorkingMicroserviceException.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Created by AlexanderC on 6/10/15.
 */

'use strict';

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

/**
 * Thrown when no working microservice set
 */
export class MissingWorkingMicroserviceException extends Exception {
  constructor() {
    super('Missing working microservice from Kernel.MicroserviceInjectable');
  }
}