com.cybersource.flex.sdk.exception.FlexException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flex-server-sdk Show documentation
Show all versions of flex-server-sdk Show documentation
CyberSource Flex API Server Side SDK
/**
* Copyright (c) 2017 by CyberSource
*/
package com.cybersource.flex.sdk.exception;
public class FlexException extends Exception {
public FlexException(final String msg) {
super(msg);
}
public FlexException(final Throwable t) {
super(t);
}
public FlexException(String message, Throwable t) {
super(message, t);
}
}