2019-07-17 06:52:55 -07:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-08-31 16:15:15 +01:00
|
|
|
*
|
2019-07-17 06:52:55 -07:00
|
|
|
* This source code is licensed under the MIT license found in the LICENSE
|
|
|
|
* file in the root directory of this source tree.
|
2016-08-31 16:15:15 +01:00
|
|
|
*/
|
|
|
|
package com.facebook.jni;
|
|
|
|
|
2019-07-17 06:52:55 -07:00
|
|
|
import com.facebook.jni.annotations.DoNotStrip;
|
2016-08-31 16:15:15 +01:00
|
|
|
|
|
|
|
@DoNotStrip
|
|
|
|
public class CppException extends RuntimeException {
|
|
|
|
@DoNotStrip
|
|
|
|
public CppException(String message) {
|
|
|
|
super(message);
|
|
|
|
}
|
|
|
|
}
|