1 package net.secodo.jcircuitbreaker.breakhandler.impl; 2 3 import net.secodo.jcircuitbreaker.breakhandler.exception.BreakHandlerException; 4 5 class ExceptionThrowingHandlerTestMyException extends BreakHandlerException { 6 7 public ExceptionThrowingHandlerTestMyException(String message) { 8 super(message); 9 } 10 } 11 12