summaryrefslogtreecommitdiff
path: root/graphics/java/android/renderscript/RSRuntimeException.java
diff options
context:
space:
mode:
authorJason Sams <rjsams@android.com>2010-11-03 14:27:11 -0700
committerJason Sams <rjsams@android.com>2010-11-03 14:27:11 -0700
commitd5f06300341df0990be3e0b7a26fa49b13c6fc19 (patch)
treeb6ab4893e599c401debbe0f0282e28303c5514d9 /graphics/java/android/renderscript/RSRuntimeException.java
parent4b8d36b30ad2e87f3969034eb42dc14b99f03686 (diff)
RS Error cleanup.
Thow java exception during init if the GL driver fails rather than native crash. Change-Id: Ie96ef5a2ac12e64f9456545d86157c4c95179a8e
Diffstat (limited to 'graphics/java/android/renderscript/RSRuntimeException.java')
-rw-r--r--graphics/java/android/renderscript/RSRuntimeException.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/graphics/java/android/renderscript/RSRuntimeException.java b/graphics/java/android/renderscript/RSRuntimeException.java
new file mode 100644
index 000000000000..4c97937ba512
--- /dev/null
+++ b/graphics/java/android/renderscript/RSRuntimeException.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2010 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.renderscript;
+
+
+/**
+ * Base class for all exceptions thrown by the Android
+ * Renderscript
+ * @hide
+ */
+public class RSRuntimeException
+ extends java.lang.RuntimeException {
+ public RSRuntimeException(String string) {
+ super(string);
+ }
+}
+