frysk.sys
Class Errno

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by frysk.UserException
                  extended by frysk.sys.Errno
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Errno.Ebadf, Errno.Echild, Errno.Efault, Errno.Einval, Errno.Eio, Errno.Enoent, Errno.Enomem, Errno.Eperm, Errno.Esrch

public class Errno
extends frysk.UserException

Unix Host Errors. Do not confuse this with target errors and target error numbers.

See Also:
Serialized Form

Nested Class Summary
static class Errno.Ebadf
           
static class Errno.Echild
           
static class Errno.Efault
           
static class Errno.Einval
           
static class Errno.Eio
           
static class Errno.Enoent
           
static class Errno.Enomem
           
static class Errno.Eperm
           
static class Errno.Esrch
           
 
Constructor Summary
Errno(int num, String message)
          Create an error corresponding to errno (use when the more specific errno hasn't available).
 
Method Summary
 String getMessage()
          Return the error message (without any decoration).
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Errno

public Errno(int num,
             String message)
Create an error corresponding to errno (use when the more specific errno hasn't available).

Method Detail

getMessage

public String getMessage()
Return the error message (without any decoration).

Overrides:
getMessage in class Throwable