com.cybersource.flex.sdk.exception.FlexSDKInternalException 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
package com.cybersource.flex.sdk.exception;
public class FlexSDKInternalException extends FlexException {
public FlexSDKInternalException(String msg) {
super(msg);
}
public FlexSDKInternalException(Throwable t) {
super(t);
}
public FlexSDKInternalException(String message, Throwable t) {
super(message, t);
}
}