com.github.petruki.switcher.client.exception.SwitcherFactoryContextException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of switcher-client Show documentation
Show all versions of switcher-client Show documentation
Switcher Client for working with Switcher API
package com.github.petruki.switcher.client.exception;
/**
* @author rogerio
* @since 2019-12-24
*/
public class SwitcherFactoryContextException extends SwitcherException {
private static final long serialVersionUID = -6340224967205872873L;
public SwitcherFactoryContextException() {
super("Context was not initialized. Call 'buildContext' to set up the factory", null);
}
}