Package net.pterodactylus.sone.freenet.plugin

Examples of net.pterodactylus.sone.freenet.plugin.PluginException


        replies.remove(pluginIdentifier);
      }
    }
    logger.log(Level.FINEST, String.format("Received FCP Response for %s: %s", fields.get("Message"), (reply.getFields() != null) ? reply.getFields().get("Message") : null));
    if ((reply.getFields() == null) || "Error".equals(reply.getFields().get("Message"))) {
      throw new PluginException("Could not perform request for " + fields.get("Message"));
    }
    return reply;
  }
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.freenet.plugin.PluginException

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.