DescriptorException.java revision 3170:dc017a37aac5
1234287Sdim/*
2234287Sdim * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved.
3234287Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4234287Sdim *
5234287Sdim * This code is free software; you can redistribute it and/or modify it
6234287Sdim * under the terms of the GNU General Public License version 2 only, as
7234287Sdim * published by the Free Software Foundation.  Oracle designates this
8234287Sdim * particular file as subject to the "Classpath" exception as provided
9234287Sdim * by Oracle in the LICENSE file that accompanied this code.
10234287Sdim *
11234287Sdim * This code is distributed in the hope that it will be useful, but WITHOUT
12239462Sdim * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13234287Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14234287Sdim * version 2 for more details (a copy is included in the LICENSE file that
15234287Sdim * accompanied this code).
16234287Sdim *
17239462Sdim * You should have received a copy of the GNU General Public License version
18239462Sdim * 2 along with this work; if not, write to the Free Software Foundation,
19234287Sdim * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20234287Sdim *
21234287Sdim * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22234287Sdim * or visit www.oracle.com if you need additional information or have any
23234287Sdim * questions.
24234287Sdim */
25234287Sdim
26234287Sdimpackage com.sun.tools.classfile;
27234287Sdim
28234287Sdim/*
29234287Sdim *  <p><b>This is NOT part of any supported API.
30234287Sdim *  If you write code that depends on this, you do so at your own risk.
31234287Sdim *  This code and its internal interfaces are subject to change or
32234287Sdim *  deletion without notice.</b>
33234287Sdim */
34234287Sdimpublic class DescriptorException extends Exception {
35234287Sdim    private static final long serialVersionUID = 2411890273788901032L;
36234287Sdim}
37234287Sdim