public class Main {

    public static void main(String[]args) throws ClassNotFoundException{

        // The following line throws a InvalidIndexException. But if the first dollar sign is replaced by a dot a ClassNotFoundException is throw
        Class clazz = Class.forName("com.dovetailsys$routing$preference$RoutingPayment");
    }

}