mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-28 15:50:37 +00:00
63 lines
1.6 KiB
Java
63 lines
1.6 KiB
Java
package org.kohsuke.github;
|
|
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import javax.annotation.CheckForNull;
|
|
import javax.annotation.Nonnull;
|
|
|
|
/**
|
|
* Request/responce contains useful metadata. Custom exception allows store info for next diagnostics.
|
|
*
|
|
* @author Kanstantsin Shautsou
|
|
*/
|
|
public class GHIOException extends IOException {
|
|
protected Map<String, List<String>> responseHeaderFields;
|
|
|
|
/**
|
|
* Instantiates a new Ghio exception.
|
|
*/
|
|
public GHIOException() {
|
|
}
|
|
|
|
/**
|
|
* Instantiates a new Ghio exception.
|
|
*
|
|
* @param message
|
|
* the message
|
|
*/
|
|
public GHIOException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
/**
|
|
* Constructs a {@code GHIOException} with the specified detail message and cause.
|
|
*
|
|
* @param message
|
|
* The detail message (which is saved for later retrieval by the {@link #getMessage()} method)
|
|
*
|
|
* @param cause
|
|
* The cause (which is saved for later retrieval by the {@link #getCause()} method). (A null value is
|
|
* permitted, and indicates that the cause is nonexistent or unknown.)
|
|
*/
|
|
public GHIOException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
/**
|
|
* Gets response header fields.
|
|
*
|
|
* @return the response header fields
|
|
*/
|
|
@CheckForNull
|
|
public Map<String, List<String>> getResponseHeaderFields() {
|
|
return responseHeaderFields;
|
|
}
|
|
|
|
GHIOException withResponseHeaderFields(@Nonnull Map<String, List<String>> headerFields) {
|
|
this.responseHeaderFields = headerFields;
|
|
return this;
|
|
}
|
|
}
|