aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/text/StringCharacterIterator.java
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@adacore.com>2008-05-26 15:16:39 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2008-05-26 17:16:39 +0200
commit4f2b873ae9c36c452d09744a6887694d911c5603 (patch)
tree6bfd203d43ff52ab95d8b8286a5df7612137ed81 /libjava/classpath/java/text/StringCharacterIterator.java
parentc5ecf679d5d226fdf3c8b0dd5be89c5790247304 (diff)
downloadgcc-4f2b873ae9c36c452d09744a6887694d911c5603.zip
gcc-4f2b873ae9c36c452d09744a6887694d911c5603.tar.gz
gcc-4f2b873ae9c36c452d09744a6887694d911c5603.tar.bz2
* gnat.dg/specs/array_no_def_init.ads: New test.
From-SVN: r135939
Diffstat (limited to 'libjava/classpath/java/text/StringCharacterIterator.java')
0 files changed, 0 insertions, 0 deletions
e, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package java.security; /** * This exception is thrown when the requested security algorithm is * not available * * @author Aaron M. Renn <arenn@urbanophile.com> * @status updated to 1.4 */ public class NoSuchAlgorithmException extends GeneralSecurityException { /** * Compatible with JDK 1.1+. */ private static final long serialVersionUID = -7443947487218346562L; /** * Create a new instance with no descriptive error message. */ public NoSuchAlgorithmException() { } /** * Create a new instance with a descriptive error message. * * @param msg the descriptive error message */ public NoSuchAlgorithmException(String msg) { super(msg); } }