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