package com.roxoft.aoc; public class UnexpectedSolutionException extends RuntimeException { /** * @param message describing the error */ public UnexpectedSolutionException(final String message) { super(message); } }