Package io.iron.ironmq

Examples of io.iron.ironmq.HTTPException


    @Override
    public void deleteMessage(String id) throws IOException {
        if (messages.containsKey(id)) {
            messages.remove(id);
        } else
            throw new HTTPException(404, "not found");
    }
View Full Code Here

TOP

Related Classes of io.iron.ironmq.HTTPException

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.