1 package org.jboss.cache.buddyreplication; 2 3 import org.jboss.cache.CacheException; 4 5 11 public class BuddyNotInitException extends CacheException 12 { 13 14 private static final long serialVersionUID = 8968506912780922157L; 15 16 public BuddyNotInitException() 17 { 18 } 19 20 public BuddyNotInitException(String msg) 21 { 22 super(msg); 23 } 24 25 public BuddyNotInitException(String msg, Throwable cause) 26 { 27 super(msg, cause); 28 } 29 } 30 | Popular Tags |