1 package net.secodo.jcircuitbreaker.breakhandler.impl;
2
3 public class BreakHandlerTestNotWorkingException extends Exception {
4 public BreakHandlerTestNotWorkingException(String message) throws BreakHandlerTestInstantiationException {
5 super(message);
6 throw new BreakHandlerTestInstantiationException("Test exception - instantiation blocked");
7
8 }
9 }