package me.hammerle.exceptions; public class IllegalStringException extends Exception { private final String s; public IllegalStringException(String s) { this.s = s; } public String getBadString() { return s; } }