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.
14 lines
328 B
Java
14 lines
328 B
Java
15 years ago
|
package com.todoroo.andlib.service;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
public class HttpErrorException extends IOException {
|
||
|
|
||
|
private static final long serialVersionUID = 5373340422464657279L;
|
||
|
|
||
|
public HttpErrorException(int code, String message) {
|
||
|
super(String.format("%d %s", code, message)); //$NON-NLS-1$
|
||
|
}
|
||
|
|
||
|
}
|