1 11 12 package org.jivesoftware.messenger.group; 13 14 19 public class GroupNotFoundException extends Exception { 20 21 26 public GroupNotFoundException() { 27 super(); 28 } 29 30 38 public GroupNotFoundException(String message) { 39 super(message); 40 } 41 42 54 public GroupNotFoundException(String message, Throwable cause) { 55 super(message, cause); 56 } 57 58 69 public GroupNotFoundException(Throwable cause) { 70 super(cause); 71 } 72 } | Popular Tags |