Package net.pterodactylus.sone.core.event

Examples of net.pterodactylus.sone.core.event.ImageInsertFailedEvent


    @SuppressWarnings("synthetic-access")
    public void onFailure(InsertException insertException, BaseClientPutter clientPutter, ObjectContainer objectContainer) {
      if ((insertException != null) && ("Cancelled by user".equals(insertException.getMessage()))) {
        eventBus.post(new ImageInsertAbortedEvent(image));
      } else {
        eventBus.post(new ImageInsertFailedEvent(image, insertException));
      }
    }
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.core.event.ImageInsertFailedEvent

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.