FileDocCategorySizeDatePackage
TimeoutRuntimeException.javaAPI DocAndroid 5.1 API1229Thu Mar 12 22:22:48 GMT 2015com.android.ex.camera2.exceptions

TimeoutRuntimeException

public class TimeoutRuntimeException extends RuntimeException
Used instead of TimeoutException when something times out in a non-recoverable manner.

This typically happens due to a deadlock or bug in the camera service, so please file a bug for this. This should never ever happen in normal operation, which is why this exception is unchecked.

Fields Summary
Constructors Summary
public TimeoutRuntimeException(String message)

        super(message);
    
public TimeoutRuntimeException(String message, Throwable cause)

        super(message, cause);
    
Methods Summary