for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package org.gannacademy.cdf.graphics;
/**
* Superclass of exceptions thrown by members of {@code org.gannacademy.cdf.graphics} package
*
* @author <a href="https://github.com/gann-cdf/graphics/issues" target="_blank">Seth Battis</a>
*/
public class DrawableException extends Exception {
public DrawableException(String message) {
super(message);
}