summaryrefslogtreecommitdiffstats
path: root/graphics/java/android/renderscript/RSDriverException.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/RSDriverException.java
parent4b8d36b30ad2e87f3969034eb42dc14b99f03686 (diff)
downloadframeworks_base-d5f06300341df0990be3e0b7a26fa49b13c6fc19.zip
frameworks_base-d5f06300341df0990be3e0b7a26fa49b13c6fc19.tar.gz
frameworks_base-d5f06300341df0990be3e0b7a26fa49b13c6fc19.tar.bz2
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/RSDriverException.java')
-rw-r--r--graphics/java/android/renderscript/RSDriverException.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/graphics/java/android/renderscript/RSDriverException.java b/graphics/java/android/renderscript/RSDriverException.java
new file mode 100644
index 0000000..61787e6
--- /dev/null
+++ b/graphics/java/android/renderscript/RSDriverException.java
@@ -0,0 +1,32 @@
+/*
+ * 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 RSDriverException extends RSRuntimeException {
+ public RSDriverException(String string) {
+ super(string);
+ }
+}
+
+
+