package org.json.junit.data; /** * test class for verifying write errors. * @author John Aylward * */ public class BrokenToString { @Override public String toString() { throw new IllegalStateException("Something went horribly wrong!"); } }