< prev index next >

src/java.base/share/classes/sun/net/www/ApplicationLaunchException.java

Print this page




  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.net.www;
  27 
  28 /**
  29  * An exception thrown by the MimeLauncher when it is unable to launch
  30  * an external content viewer.
  31  *
  32  * @author      Sunita Mani
  33  */
  34 
  35 public class ApplicationLaunchException extends Exception {

  36     private static final long serialVersionUID = -4782286141289536883L;
  37 
  38     public ApplicationLaunchException(String reason) {
  39         super(reason);
  40     }
  41 }


  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.net.www;
  27 
  28 /**
  29  * An exception thrown by the MimeLauncher when it is unable to launch
  30  * an external content viewer.
  31  *
  32  * @author      Sunita Mani
  33  */
  34 
  35 public class ApplicationLaunchException extends Exception {
  36     @java.io.Serial
  37     private static final long serialVersionUID = -4782286141289536883L;
  38 
  39     public ApplicationLaunchException(String reason) {
  40         super(reason);
  41     }
  42 }
< prev index next >