All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.dev.jjs.intrinsic.com.google.gwt.lang.Exceptions Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 8.25.2
Show newest version
/*
 * Copyright 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.google.gwt.lang;

import com.google.gwt.core.client.JavaScriptException;
import com.google.gwt.core.client.impl.DoNotInline;
import com.google.gwt.core.client.impl.StackTraceCreator;

/**
 * This is a magic class the compiler uses to throw and check exceptions.
 */
final class Exceptions {

  @DoNotInline // This frame can be useful in understanding the native stack
  static Object wrap(Object e) {
    if (e instanceof Throwable) {
      return e;
    }

    JavaScriptException jse = getCachedJavaScriptException(e);
    if (jse == null) {
      jse = new JavaScriptException(e);
      StackTraceCreator.captureStackTrace(jse, e);
      cacheJavaScriptException(e, jse);
    }

    return jse;
  }

  static Object unwrap(Object e) {
    if (e instanceof JavaScriptException) {
      JavaScriptException jse = ((JavaScriptException) e);
      if (jse.isThrownSet()) {
        return jse.getThrown();
      }
    }
    return e;
  }

  private static native JavaScriptException getCachedJavaScriptException(Object e) /*-{
    return e && e.__gwt$exception;
  }-*/;

  private static native void cacheJavaScriptException(Object e, JavaScriptException jse) /*-{
    if (e && typeof e == 'object') {
      try {
        e.__gwt$exception = jse;
      } catch (ignored) {
        // See https://code.google.com/p/google-web-toolkit/issues/detail?id=8449
      }
    }
  }-*/;

  static AssertionError makeAssertionError() {
    return new AssertionError();
  }

  /*
   * We use nonstandard naming here so it's easy for the compiler to map to
   * method names based on primitive type name.
   */
  // CHECKSTYLE_OFF
  static AssertionError makeAssertionError_boolean(boolean message) {
    return new AssertionError(message);
  }

  static AssertionError makeAssertionError_char(char message) {
    return new AssertionError(message);
  }

  static AssertionError makeAssertionError_double(double message) {
    return new AssertionError(message);
  }

  static AssertionError makeAssertionError_float(float message) {
    return new AssertionError(message);
  }

  static AssertionError makeAssertionError_int(int message) {
    return new AssertionError(message);
  }

  static AssertionError makeAssertionError_long(long message) {
    return new AssertionError(message);
  }

  static AssertionError makeAssertionError_Object(Object message) {
    return new AssertionError(message);
  }

  /**
   * Throws a TypeError if the argument is null. Otherwise,
   * returns the argument.
   *
   * 

The GWT compiler inserts calls to this method as a debugging aid, but * they will be removed in production compiles. We don't throw a * NullPointerException to make it harder to accidentally write code that * works in development and fails in production. * *

Instead of attempting to catch this exception, we recommend adding * an explicit null check and throwing java.lang.NullPointerException, * so that the GWT compiler doesn't remove the null check you're depending on. */ static native T checkNotNull(T arg) /*-{ if (arg == null) { throw new TypeError("null pointer"); } return arg; }-*/; /** * Use by the try-with-resources construct. Look at * {@link com.google.gwt.dev.jjs.impl.GwtAstBuilder.createCloseBlockFor}. * * @param resource a resource implementing the AutoCloseable interface. * @param mainException an exception being propagated. * @return an exception to propagate or {@code null} if none. */ static Throwable safeClose(AutoCloseable resource, Throwable mainException) { if (resource == null) { return mainException; } try { resource.close(); } catch (Throwable e) { if (mainException == null) { return e; } mainException.addSuppressed(e); } return mainException; } // CHECKSTYLE_ON }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy