Package com.impetus.kundera.classreading

Examples of com.impetus.kundera.classreading.ResourceReadingException


    }
   
    @Test
    public void testResourceReadingException()
    {
        ResourceReadingException exception = new com.impetus.kundera.classreading.ResourceReadingException("Error with string");
        Assert.assertNotNull(exception);
       
        exception = new ResourceReadingException(new RuntimeException());
        Assert.assertNotNull(exception);
   
        exception = new ResourceReadingException("KunderaTests",new RuntimeException());
        Assert.assertNotNull(exception);
       
        exception = new ResourceReadingException();
        Assert.assertNotNull(exception);
    }
View Full Code Here

TOP

Related Classes of com.impetus.kundera.classreading.ResourceReadingException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.