to top
Android APIs
public static class

RenderScript.RSErrorHandler

extends Object
implements Runnable
java.lang.Object
   ↳ android.renderscript.RenderScript.RSErrorHandler

Class Overview

Runtime error base class. An application should derive from this class if it wishes to install an error handler. When errors occur at runtime the fields in this class will be filled and the run method called.

Summary

Fields
protected String mErrorMessage
protected int mErrorNum
Public Constructors

? Examples
RenderScript.RSErrorHandler()
Public Methods

? Examples
void run()
Starts executing the active part of the class' code.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Runnable

Fields

protected String mErrorMessage

Added in API level 11

protected int mErrorNum

Added in API level 11

Public Constructors

public RenderScript.RSErrorHandler ()

Added in API level 11

Public Methods

public void run ()

Added in API level 11

Starts executing the active part of the class' code. This method is called when a thread is started that has been created with a class which implements Runnable.

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.