package com.fasterxml.jackson.datatype.jsr310.testutil.failure;
/**
* Exception used to alert that a test is passing, but should be failing.
*
* WARNING : This only for test code, and should never be thrown from production code.
*
* @since 2.19
*/
public class JacksonTestShouldFailException
extends RuntimeException
{
private static final long serialVersionUID = 1L;
public JacksonTestShouldFailException(String msg) {
super(msg);
}
}