Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*--------------------------------------------------------------------------
* Copyright (c) 2010-2020, Elon.su All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the elon developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Elon.su, you can also mail [email protected]
*--------------------------------------------------------------------------
*/
package com.github.dennisit.vplus.data.exception;
import com.github.dennisit.vplus.data.result.AInstatus;
/**
* Created by Elon.su on 17/5/13.
*/
public class ApiException extends RuntimeException {
private AInstatus.WuInstatus wuInstatus;
public ApiException(AInstatus.WuInstatus wuInstatus) {
this(wuInstatus, wuInstatus.getMessage());
}
public ApiException(AInstatus.WuInstatus wuInstatus, String message) {
super(message);
this.wuInstatus = wuInstatus;
}
public ApiException(AInstatus.WuInstatus wuInstatus, String message, Throwable cause) {
super(message, cause);
this.wuInstatus = wuInstatus;
}
public ApiException(AInstatus.WuInstatus wuInstatus, Throwable cause) {
super(cause);
this.wuInstatus = wuInstatus;
}
public ApiException(AInstatus.WuInstatus wuInstatus, String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
this.wuInstatus = wuInstatus;
}
public ApiException() {
this(AInstatus.WuInstatus.FAILURE);
}
public ApiException(String message) {
this(AInstatus.WuInstatus.FAILURE, message);
}
public ApiException(String message, Throwable cause) {
this(AInstatus.WuInstatus.FAILURE, message, cause);
}
public ApiException(Throwable cause) {
this(AInstatus.WuInstatus.FAILURE, cause);
}
protected ApiException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
this(AInstatus.WuInstatus.FAILURE, message, cause, enableSuppression, writableStackTrace);
}
public AInstatus.WuInstatus getWuInstatus() {
return wuInstatus;
}
public void setWuInstatus(AInstatus.WuInstatus wuInstatus) {
this.wuInstatus = wuInstatus;
}
}