mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
9647c5a257
Differential Revision: D2624801 fb-gh-sync-id: 48741a8caf029415753a4c616a07f18d3660e6fb
18 lines
409 B
Java
18 lines
409 B
Java
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
package com.facebook.react.bridge;
|
|
|
|
import com.facebook.proguard.annotations.DoNotStrip;
|
|
|
|
/**
|
|
* Exception thrown when there is an error evaluating JS, e.g. a syntax error.
|
|
*/
|
|
@DoNotStrip
|
|
public class JSExecutionException extends RuntimeException {
|
|
|
|
@DoNotStrip
|
|
public JSExecutionException(String detailMessage) {
|
|
super(detailMessage);
|
|
}
|
|
}
|