backport: *.java: Reformat all to unofficial standard coding style.

Merge with Classpath (changes by Bryce McKinlay)
	* java/util/jar/*.java: Reformat all to unofficial standard coding
	style. No changes of substance.

From-SVN: r37538
This commit is contained in:
Mark Wielaard 2000-11-18 02:00:06 +00:00 committed by Mark Wielaard
parent c003f37865
commit c5f651bf3f
8 changed files with 1425 additions and 1287 deletions

View file

@ -39,27 +39,29 @@ import java.util.zip.ZipException;
* @since 1.2
* @author Mark Wielaard (mark@klomp.org)
*/
public class JarException extends ZipException {
// Constructors
public class JarException extends ZipException
{
// Constructors
/**
* Create a new JarException without a descriptive error message.
*/
public JarException() {
super();
}
/**
* Create a new JarException without a descriptive error message.
*/
public JarException()
{
super();
}
/**
* Create a new JarException with a descriptive error message indicating
* what went wrong. This message can later be retrieved by calling the
* <code>getMessage()</code> method.
* @see java.lang.Throwable@getMessage()
*
* @param message The descriptive error message
*/
public JarException(String message) {
super(message);
}
/**
* Create a new JarException with a descriptive error message indicating
* what went wrong. This message can later be retrieved by calling the
* <code>getMessage()</code> method.
* @see java.lang.Throwable@getMessage()
*
* @param message The descriptive error message
*/
public JarException(String message)
{
super(message);
}
}