1 package prefuse.data; 2 3 7 public class DataReadOnlyException extends RuntimeException { 8 9 12 public DataReadOnlyException() { 13 super(); 14 } 15 16 22 public DataReadOnlyException(String message, Throwable cause) { 23 super(message, cause); 24 } 25 26 30 public DataReadOnlyException(String message) { 31 super(message); 32 } 33 34 39 public DataReadOnlyException(Throwable cause) { 40 super(cause); 41 } 42 43 } | Popular Tags |