mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
523 B
Java
22 lines
523 B
Java
package com.todoroo.astrid.gtasks.api;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class GoogleTasksException extends IOException {
|
|
private static final long serialVersionUID = -5585448790574862510L;
|
|
|
|
public GoogleTasksException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public GoogleTasksException(String message, Throwable cause) {
|
|
super(message);
|
|
initCause(cause);
|
|
}
|
|
|
|
public GoogleTasksException(Throwable cause) {
|
|
super(cause.getMessage());
|
|
initCause(cause);
|
|
}
|
|
}
|