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