1 package org.djutils.traceverifier; 2 3 /** 4 * TraceVerifierException is the exception thrown when the expected string differs from the actual string. <br> 5 * <br> 6 * Copyright (c) 2020-2024 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See 7 * for project information <a href="https://djutils.org" target="_blank"> https://djutils.org</a>. The DJUTILS project is 8 * distributed under a three-clause BSD-style license, which can be found at 9 * <a href="https://djutils.org/docs/license.html" target="_blank"> https://djutils.org/docs/license.html</a>. <br> 10 * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a> 11 * @author <a href="https://www.tudelft.nl/pknoppers">Peter Knoppers</a> 12 */ 13 public class TraceVerifierException extends RuntimeException 14 { 15 /** */ 16 private static final long serialVersionUID = 20200822L; 17 18 /** 19 * Create a specific RuntimeException that shows the difference between the sample and the expected sample. 20 * @param message String; the message of the exception, showing the difference between the sample and the expected sample 21 */ 22 public TraceVerifierException(final String message) 23 { 24 super(message); 25 } 26 27 }