Files
yoga/lib/fb/src/main/java/com/facebook/jni/UnknownCppException.java

24 lines
493 B
Java
Raw Normal View History

2016-08-31 16:15:15 +01:00
/*
* Copyright (c) 2015-present, Facebook, Inc.
*
* 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;
import com.facebook.proguard.annotations.DoNotStrip;
@DoNotStrip
public class UnknownCppException extends CppException {
@DoNotStrip
public UnknownCppException() {
super("Unknown");
}
@DoNotStrip
public UnknownCppException(String message) {
super(message);
}
}