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

com.octo.android.robospice.persistence.exception.KeySanitationExcepion Maven / Gradle / Ivy

The newest version!
package com.octo.android.robospice.persistence.exception;

/**
 * Thrown when a sanitation/desanitation problem occurs.
 * @author SNI
 */
public class KeySanitationExcepion extends SpiceException {

    private static final long serialVersionUID = 1140114915715955254L;

    public KeySanitationExcepion() {
        super("A problem occured during sanitation/desanitation of a key.");
    }

    public KeySanitationExcepion(String arg0, Throwable arg1) {
        super(arg0, arg1);
    }

    public KeySanitationExcepion(String arg0) {
        super(arg0);
    }

    public KeySanitationExcepion(Throwable arg0) {
        super(arg0);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy