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