src/share/classes/com/sun/tools/doclets/internal/toolkit/util/FatalError.java

Sat, 07 Nov 2020 10:30:02 +0800

author
aoqi
date
Sat, 07 Nov 2020 10:30:02 +0800
changeset 3938
93012e2a5d1d
parent 3315
6f0746b6de9f
permissions
-rw-r--r--

Added tag mips-jdk8u275-b01 for changeset eb6ee6a5f2fe

aefimov@3315 1 /*
aefimov@3315 2 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
aefimov@3315 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aefimov@3315 4 *
aefimov@3315 5 * This code is free software; you can redistribute it and/or modify it
aefimov@3315 6 * under the terms of the GNU General Public License version 2 only, as
aefimov@3315 7 * published by the Free Software Foundation. Oracle designates this
aefimov@3315 8 * particular file as subject to the "Classpath" exception as provided
aefimov@3315 9 * by Oracle in the LICENSE file that accompanied this code.
aefimov@3315 10 *
aefimov@3315 11 * This code is distributed in the hope that it will be useful, but WITHOUT
aefimov@3315 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aefimov@3315 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aefimov@3315 14 * version 2 for more details (a copy is included in the LICENSE file that
aefimov@3315 15 * accompanied this code).
aefimov@3315 16 *
aefimov@3315 17 * You should have received a copy of the GNU General Public License version
aefimov@3315 18 * 2 along with this work; if not, write to the Free Software Foundation,
aefimov@3315 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aefimov@3315 20 *
aefimov@3315 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aefimov@3315 22 * or visit www.oracle.com if you need additional information or have any
aefimov@3315 23 * questions.
aefimov@3315 24 */
aefimov@3315 25
aefimov@3315 26 package com.sun.tools.doclets.internal.toolkit.util;
aefimov@3315 27
aefimov@3315 28 /**
aefimov@3315 29 * <p><b>This is NOT part of any supported API.
aefimov@3315 30 * If you write code that depends on this, you do so at your own risk.
aefimov@3315 31 * This code and its internal interfaces are subject to change or
aefimov@3315 32 * deletion without notice.</b>
aefimov@3315 33 */
aefimov@3315 34 @Deprecated
aefimov@3315 35 public class FatalError extends Error {
aefimov@3315 36 private static final long serialVersionUID = -9131058909576418984L;
aefimov@3315 37
aefimov@3315 38 public FatalError() { }
aefimov@3315 39 }

mercurial