mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
removed error message variable
This commit is contained in:
parent
20cf418394
commit
b60487304f
@ -21,21 +21,17 @@ package org.wso2.carbon.device.mgt.iot.input.adapter.http.oauth.exception;
|
|||||||
* This Exception will be thrown, when there any interference with token validation flow.
|
* This Exception will be thrown, when there any interference with token validation flow.
|
||||||
*/
|
*/
|
||||||
public class OAuthTokenValidationException extends Exception {
|
public class OAuthTokenValidationException extends Exception {
|
||||||
private String errMessage;
|
|
||||||
|
|
||||||
public OAuthTokenValidationException(String msg, Exception nestedEx) {
|
public OAuthTokenValidationException(String msg, Exception nestedEx) {
|
||||||
super(msg, nestedEx);
|
super(msg, nestedEx);
|
||||||
setErrorMessage(msg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuthTokenValidationException(String message, Throwable cause) {
|
public OAuthTokenValidationException(String message, Throwable cause) {
|
||||||
super(message, cause);
|
super(message, cause);
|
||||||
setErrorMessage(message);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuthTokenValidationException(String msg) {
|
public OAuthTokenValidationException(String msg) {
|
||||||
super(msg);
|
super(msg);
|
||||||
setErrorMessage(msg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuthTokenValidationException() {
|
public OAuthTokenValidationException() {
|
||||||
@ -45,12 +41,4 @@ public class OAuthTokenValidationException extends Exception {
|
|||||||
public OAuthTokenValidationException(Throwable cause) {
|
public OAuthTokenValidationException(Throwable cause) {
|
||||||
super(cause);
|
super(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getErrorMessage() {
|
|
||||||
return errMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setErrorMessage(String errMessage) {
|
|
||||||
this.errMessage = errMessage;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -21,21 +21,17 @@ package org.wso2.carbon.device.mgt.iot.output.adapter.ui.authentication.oauth.ex
|
|||||||
* This Exception will be thrown, when there any interference with token validation flow.
|
* This Exception will be thrown, when there any interference with token validation flow.
|
||||||
*/
|
*/
|
||||||
public class OAuthTokenValidationException extends Exception {
|
public class OAuthTokenValidationException extends Exception {
|
||||||
private String errMessage;
|
|
||||||
|
|
||||||
public OAuthTokenValidationException(String msg, Exception nestedEx) {
|
public OAuthTokenValidationException(String msg, Exception nestedEx) {
|
||||||
super(msg, nestedEx);
|
super(msg, nestedEx);
|
||||||
setErrorMessage(msg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuthTokenValidationException(String message, Throwable cause) {
|
public OAuthTokenValidationException(String message, Throwable cause) {
|
||||||
super(message, cause);
|
super(message, cause);
|
||||||
setErrorMessage(message);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuthTokenValidationException(String msg) {
|
public OAuthTokenValidationException(String msg) {
|
||||||
super(msg);
|
super(msg);
|
||||||
setErrorMessage(msg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuthTokenValidationException() {
|
public OAuthTokenValidationException() {
|
||||||
@ -46,11 +42,4 @@ public class OAuthTokenValidationException extends Exception {
|
|||||||
super(cause);
|
super(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getErrorMessage() {
|
|
||||||
return errMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setErrorMessage(String errMessage) {
|
|
||||||
this.errMessage = errMessage;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user