1 3 9 10 package org.jboss.cache; 11 12 13 14 15 21 22 public class NodeNotExistsException extends CacheException { 23 24 private static final long serialVersionUID = 779376138690777440L; 25 26 public NodeNotExistsException() { 27 super(); 28 } 29 30 31 public NodeNotExistsException(String msg) { 32 super(msg); 33 } 34 35 36 public NodeNotExistsException(String msg, Throwable cause) { 37 super(msg, cause); 38 } 39 40 41 42 } 43 | Popular Tags |