Package org.jboss.weld.exceptions

Examples of org.jboss.weld.exceptions.WeldExceptionStringMessage


    private final WeldExceptionMessage message;

    public ContextNotActiveException(Throwable throwable) {
        super(throwable);
        this.message = new WeldExceptionStringMessage(throwable.getLocalizedMessage());
    }
View Full Code Here


     * Creates a new exception with the given localized message.
     *
     * @param message
     */
    public ContextNotActiveException(String message) {
        this.message = new WeldExceptionStringMessage(message);
    }
View Full Code Here

    private final WeldExceptionMessage message;

    public BusyConversationException(Throwable throwable) {
        super(throwable);
        this.message = new WeldExceptionStringMessage(throwable.getLocalizedMessage());
    }
View Full Code Here

     * Creates a new exception with the given localized message.
     *
     * @param message
     */
    public BusyConversationException(String message) {
        this.message = new WeldExceptionStringMessage(message);
    }
View Full Code Here

    private final WeldExceptionMessage message;

    public NonexistentConversationException(Throwable throwable) {
        super(throwable);
        this.message = new WeldExceptionStringMessage(throwable.getLocalizedMessage());
    }
View Full Code Here

     * Creates a new exception with the given localized message.
     *
     * @param message
     */
    public NonexistentConversationException(String message) {
        this.message = new WeldExceptionStringMessage(message);
    }
View Full Code Here

TOP

Related Classes of org.jboss.weld.exceptions.WeldExceptionStringMessage

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.