View Javadoc
1   package guru.mikelue.jdut.yaml;
2   
3   /**
4    * Represents the exception while loading YAML to conductor.
5    */
6   public class LoadingYamlException extends RuntimeException {
7   	private final static long serialVersionUID = 1L;
8   
9   	public LoadingYamlException(String format, Object... args)
10  	{
11  		super(String.format(format, args));
12  	}
13  }