1 package org.jboss.cache.marshall; 2 3 8 public class RegionNotFoundException extends Exception  9 { 10 11 private static final long serialVersionUID = 7321547249627414140L; 12 13 public RegionNotFoundException() 14 { 15 super(); 16 } 17 18 public RegionNotFoundException(String msg) 19 { 20 super(msg); 21 } 22 23 public RegionNotFoundException(String msg, Throwable cause) 24 { 25 super(msg, cause); 26 } 27 } 28 | Popular Tags |