Remove Dwarf2 restriction on EH frame generation
[official-gcc.git] / libjava / java / security / InvalidParameterException.java
blob5ece0126b57483443bbfd8c057a42269ed0e2413
1 /* Copyright (C) 2000 Free Software Foundation
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 package java.security;
11 /**
12 * @author Warren Levy <warrenl@cygnus.com>
13 * @date February 1, 2000.
16 /**
17 * Written using on-line Java Platform 1.2 API Specification.
18 * Status: Believed complete and correct.
21 public class InvalidParameterException extends IllegalArgumentException
23 public InvalidParameterException()
25 super();
28 public InvalidParameterException(String msg)
30 super(msg);