Package org.arch.dns.exception

Examples of org.arch.dns.exception.ServiceUnavailableException


    msg += " [response code " + rcode + "]";
   
    switch (rcode)
    {
      case SERVER_FAILURE:
        throw new ServiceUnavailableException(msg);
      case NAME_ERROR:
        throw new NameNotFoundException(msg);
      case NOT_IMPL:
      case REFUSED:
        throw new OperationNotSupportedException(msg);
View Full Code Here

TOP

Related Classes of org.arch.dns.exception.ServiceUnavailableException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.