Package fr.soleil.salsa.exception

Examples of fr.soleil.salsa.exception.ConversionException


    private static List<?> castToList(Transferable transferable) throws ConversionException {
        try {
            return (List<?>) transferable.getTransferData(TREE_NODE_FLAVOR);
        }
        catch (Exception e) {
            throw new ConversionException(e.getMessage(), e);
        }
    }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.exception.ConversionException

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.