1 16 package com.google.gwt.dev.js; 17 18 class UncheckedJsParserException extends RuntimeException { 20 21 private final JsParserException parserException; 22 23 public UncheckedJsParserException(JsParserException parserException) { 24 this.parserException = parserException; 25 } 26 27 public JsParserException getParserException() { 28 return parserException; 29 } 30 } 31 | Popular Tags |