Package be.hikage.managed

Source Code of be.hikage.managed.ErreurMB

package be.hikage.managed;

import org.springframework.stereotype.Component;
import org.springframework.context.annotation.Scope;

import javax.faces.event.ActionEvent;

import be.hikage.exeption.DirectException;

/**
* @Autor : Hikage
*/
@Component
public class ErreurMB {

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

    public void lanceErreurDirect(ActionEvent e) throws DirectException {
        throw new DirectException();
    }
}
TOP

Related Classes of be.hikage.managed.ErreurMB

TOP
Copyright © 2018 www.massapi.com. 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.