com.adobe.campaign.tests.bridge.service.exceptions.IBSRunTimeException Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2022 Adobe
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute this file in
* accordance with the terms of the Adobe license agreement accompanying
* it.
*/
package com.adobe.campaign.tests.bridge.service.exceptions;
/**
* This exception is intended to be used in the case of exceptions that are related to the IBS, but not related to JSON transformations
*
* author: gandomi
*/
public class IBSRunTimeException extends RuntimeException {
private static final long serialVersionUID = -4966957268446385309L;
public IBSRunTimeException(String message) {
super(message);
}
public IBSRunTimeException(String message, Throwable cause) {
super(message, cause);
}
}