1 package org.libvirt;
2 
3 /**
4  * This exception signals that a non-existing object was retrieved from the
5  * virError object
6  *
7  * @author stoty
8  * @deprecated
9  */
10 public class ErrorException extends Exception {
11     private static final long serialVersionUID = -4329050530233404971L;
12 
ErrorException(final String message)13     public ErrorException(final String message) {
14         super(message);
15     }
16 
17 }
18