Example usage for android.os Parcel readException

List of usage examples for android.os Parcel readException

Introduction

In this page you can find the example usage for android.os Parcel readException.

Prototype

public final void readException(int code, String msg) 

Source Link

Document

Throw an exception with the given message.

Usage

From source file:android.database.DatabaseUtils.java

private static final void readExceptionFromParcel(Parcel reply, String msg, int code) {
    switch (code) {
    case 2://  www. j a  v a 2s .c om
        throw new IllegalArgumentException(msg);
    case 3:
        throw new UnsupportedOperationException(msg);
    case 4:
        throw new SQLiteAbortException(msg);
    case 5:
        throw new SQLiteConstraintException(msg);
    case 6:
        throw new SQLiteDatabaseCorruptException(msg);
    case 7:
        throw new SQLiteFullException(msg);
    case 8:
        throw new SQLiteDiskIOException(msg);
    case 9:
        throw new SQLiteException(msg);
    default:
        reply.readException(code, msg);
    }
}