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

com.stanfy.enroscar.goro.GoroException Maven / Gradle / Ivy

There is a newer version: 3.0.0-RC5
Show newest version
package com.stanfy.enroscar.goro;

/**
 * Exception thrown when crucial operations cannot be done.
 * Like being unable to bind to GoroService in
 * {@link com.stanfy.enroscar.goro.GoroService#bind(android.content.Context, android.content.ServiceConnection)}.
 * Also can be thrown in case of unhandled exception thrown by a task scheduled with startService().
 */
public class GoroException extends RuntimeException {

  public GoroException(final String message) {
    super(message);
  }

  public GoroException(final String message, final Throwable cause) {
    super(message, cause);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy