All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pushtorefresh.storio.StorIOException Maven / Gradle / Ivy

There is a newer version: 1.13.0
Show newest version
package com.pushtorefresh.storio;

import android.support.annotation.NonNull;

/**
 * Common {@link RuntimeException} for all errors and exceptions occurred during StorIO operations.
 */
public class StorIOException extends RuntimeException {

    /**
     * {@inheritDoc}
     */
    public StorIOException(@NonNull final String detailMessage) {
        super(detailMessage);
    }

    /**
     * {@inheritDoc}
     */
    public StorIOException(@NonNull final String detailMessage, @NonNull final Throwable throwable) {
        super(detailMessage, throwable);
    }

    /**
     * {@inheritDoc}
     */
    public StorIOException(@NonNull final Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy