subclass for when nfs server ping fails

This commit is contained in:
Doug MacEachern 2005-03-15 18:44:37 +00:00
parent 6523175e55
commit f4c20803c6
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package net.hyperic.sigar;
public class NfsUnreachableException extends SigarException {
public NfsUnreachableException () { super(); }
public NfsUnreachableException (String s) { super(s); }
}