All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.ikor.sip.foundation.testkit.exception.TestCaseInitializationException Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
package de.ikor.sip.foundation.testkit.exception;

import de.ikor.sip.foundation.testkit.workflow.TestCase;
import lombok.extern.slf4j.Slf4j;

/** General exception for {@link TestCase} initialization */
@Slf4j
public class TestCaseInitializationException extends RuntimeException {

  /**
   * Defines exception message and type of exception
   *
   * @param message exception message
   * @param exceptionType type of exception {@link ExceptionType}
   */
  public TestCaseInitializationException(String message, ExceptionType exceptionType) {
    super("Error occurred while initializing " + exceptionType + ", message received: " + message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy