~ubuntu-branches/ubuntu/precise/classpath/precise

« back to all changes in this revision

Viewing changes to org/omg/CORBA/INITIALIZE.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2006-05-27 16:11:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060527161115-h6e39eposdt5snb6
Tags: 2:0.91-3
* Install header files to /usr/include/classpath.
* debian/control: classpath: Conflict with jamvm < 1.4.3 and
  cacao < 0.96 (Closes: #368172).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* INITIALIZE.java --
2
 
   Copyright (C) 2005 Free Software Foundation, Inc.
 
2
   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
3
3
 
4
4
This file is part of GNU Classpath.
5
5
 
41
41
import java.io.Serializable;
42
42
 
43
43
/**
44
 
 * Mans that the server cannot be initialized because of the some reason.
 
44
 * Means that the server cannot be initialized because of the some reason.
45
45
 * 
46
46
 * @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
47
47
 */
48
 
public class INITIALIZE
 
48
public final class INITIALIZE
49
49
  extends SystemException
50
50
  implements Serializable
51
51
{
57
57
  /**
58
58
   * Creates a INITIALIZE with the default minor code of 0,
59
59
   * completion state COMPLETED_NO and the given explaining message.
60
 
   * @param reasom the explaining message.
 
60
   * @param message the explaining message.
61
61
   */
62
62
  public INITIALIZE(String message)
63
63
  {