Package be.hikage.exeption

Examples of be.hikage.exeption.DirectException


    public void lanceErreur(ActionEvent e){
        throw new RuntimeException("test");
    }

    public void lanceErreurDirect(ActionEvent e) throws DirectException {
        throw new DirectException();
    }
View Full Code Here

TOP

Related Classes of be.hikage.exeption.DirectException

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.