1 7 package org.jboss.cache.lock; 8 11 public class OwnerNotExistedException extends Exception  12 { 13 14 private static final long serialVersionUID = 2837393571654438480L; 15 16 19 public OwnerNotExistedException() 20 { 21 super(); 22 } 23 24 27 public OwnerNotExistedException(String message) 28 { 29 super(message); 30 } 31 32 36 public OwnerNotExistedException(String message, Throwable cause) 37 { 38 super(message, cause); 39 } 40 41 44 public OwnerNotExistedException(Throwable cause) 45 { 46 super(cause); 47 } 48 49 } 50 | Popular Tags |