All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nablarch.fw.messaging.provider.exception.BasicMessagingExceptionFactory Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package nablarch.fw.messaging.provider.exception;

import nablarch.fw.messaging.MessagingException;
import nablarch.fw.messaging.provider.MessagingExceptionFactory;

/**
 * {@link MessagingExceptionFactory}の基本実装クラス。
 * @author Kiyohito Itoh
 */
public class BasicMessagingExceptionFactory implements MessagingExceptionFactory {

    /**
     * {@inheritDoc}
     * 

* {@link MessagingException}を生成する。 */ public MessagingException createMessagingException(String message, Throwable cause) { return new MessagingException(message, cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy