com.iwbfly.myhttp.exceptions.MyhttpRuntimeException Maven / Gradle / Ivy
The newest version!
package com.iwbfly.myhttp.exceptions;
/**
* @author pangyajun
* @since 2021/11/22 12:40
**/
public class MyhttpRuntimeException extends RuntimeException{
private int status;
private byte[] content;
public MyhttpRuntimeException(String message) {
super(message);
}
public MyhttpRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public MyhttpRuntimeException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy