001package react4j; 002 003import jsinterop.annotations.JsPackage; 004import jsinterop.annotations.JsType; 005 006/** 007 * Opaque binding for a JavaScript {@code Error}. 008 * 009 * <p>Use {@code Js.uncheckedCast(error)} to convert this value to the error type supplied by the 010 * browser JsInterop library used by the application.</p> 011 */ 012@JsType( isNative = true, namespace = JsPackage.GLOBAL, name = "Error" ) 013public class JsError 014{ 015 protected JsError() 016 { 017 } 018}