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

« back to all changes in this revision

Viewing changes to java/security/KeyException.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
/* KeyException.java -- Thrown when there is a problem with a key
2
 
   Copyright (C) 1998, 2002, 2005  Free Software Foundation, Inc.
 
2
   Copyright (C) 1998, 2002, 2005, 2006  Free Software Foundation, Inc.
3
3
 
4
4
This file is part of GNU Classpath.
5
5
 
69
69
  {
70
70
    super(msg);
71
71
  }
 
72
 
 
73
  /**
 
74
   * Create a new instance with a descriptive error message and
 
75
   * a cause.
 
76
   * @param s the descriptive error message
 
77
   * @param cause the cause
 
78
   * @since 1.5
 
79
   */
 
80
  public KeyException(String s, Throwable cause)
 
81
  {
 
82
    super(s, cause);
 
83
  }
 
84
 
 
85
  /**
 
86
   * Create a new instance with a cause.
 
87
   * @param cause the cause
 
88
   * @since 1.5
 
89
   */
 
90
  public KeyException(Throwable cause)
 
91
  {
 
92
    super(cause);
 
93
  }
72
94
}