001 package org.kuali.maven.plugins.graph.dot;
002
003 public class GraphException extends RuntimeException {
004
005 private static final long serialVersionUID = 1924410233882190818L;
006
007 public GraphException() {
008 }
009
010 public GraphException(String message) {
011 super(message);
012 }
013
014 public GraphException(Throwable exception) {
015 super(exception);
016 }
017
018 public GraphException(String message, Throwable exception) {
019 super(message, exception);
020 }
021
022 }