KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > CreateException


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: CreateException.java,v 1.2 2002/10/13 11:18:07 per_nyfelt Exp $
8

9 package org.ozoneDB;
10
11
12 /**
13  * Used to when creating objects and indicates that the object
14  * could not be created for some reason
15  *
16  * @author Per Nyfelt
17  * @version $Revision: 1.2 $Date: 2002/10/13 11:18:07 $
18  */

19 public class CreateException extends OzoneRemoteException {
20     
21     
22     public CreateException() {
23         super();
24     }
25     
26     
27     public CreateException( String JavaDoc message ) {
28         super( message );
29     }
30
31     public CreateException(Throwable JavaDoc cause) {
32         super(cause);
33     }
34
35     public CreateException(String JavaDoc message, Throwable JavaDoc cause) {
36         super(message, cause);
37     }
38
39 }
40
Popular Tags