* Test method for {@link FreemarkerAutotagException#FreemarkerAutotagException(String, Throwable)}.
*/
@Test
public void testFreemarkerAutotagExceptionStringThrowable() {
Throwable cause = new Throwable();
FreemarkerAutotagException exception = new FreemarkerAutotagException("my message", cause);
assertEquals("my message", exception.getMessage());
assertEquals(cause, exception.getCause());
}