org.ho.yaml.Yaml
public static <T> T loadType(InputStream in, Class<T> clazz) throws FileNotFoundException{
should be
public static <T> T loadType(InputStream in, Class<T> clazz) {
theres no need for the FileNotFoundException and can be removed without negative effects.
Thanks
Raphael Villela
raphaelvillela@gmail.com