public class TalkToTheManagementException extends Exception {
  public TalkToTheManagementException(String m) {
    super(m);
  }
}



//code elsewhere
if (getChange() gives coins that don't exist)
  throw new TalkToTheManagementException("No coins left for change");
