/* * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.glass.ui.monocle; public class GLException extends Exception { GLException(int errorCode, String message) { super("0x" + Integer.toHexString(errorCode) + ": " + message); } }