KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > blocks > UpdateException


1 // $Id: UpdateException.java,v 1.1.1.1 2003/09/09 01:24:08 belaban Exp $
2

3
4 package org.jgroups.blocks;
5
6
7
8 public class UpdateException extends Exception JavaDoc {
9
10     public UpdateException(String JavaDoc msg) {
11     super(msg);
12     }
13
14 }
15
Popular Tags