1 2 package org.quilt.cl; 3 4 10 public class GraphBuildException extends RuntimeException { 11 12 public GraphBuildException() { 13 super(); 14 } 15 16 public GraphBuildException(String msg) { 17 super(msg); 18 } 19 20 public GraphBuildException(String msg, Throwable cause) { 21 super (msg, cause); 22 } 23 24 public GraphBuildException(Throwable cause) { 25 super(cause); 26 } 27 } 28 | Popular Tags |