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

org.nervousync.exceptions.builder.BuilderException Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/*
 * Licensed to the Nervousync Studio (NSYC) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.nervousync.exceptions.builder;

import org.nervousync.exceptions.AbstractException;

/**
 * 

Builder Exception

*

构建器异常

* * @author Steven Wee [email protected] * @version $Revision: 1.0.0 $ $Date: Apr 25, 2017 18:30:42 $ */ public final class BuilderException extends AbstractException { /** * Serial version UID * 序列化UID */ private static final long serialVersionUID = -156775157749202954L; /** *

Constructor method for BuilderException

* Create a new BuilderException with the specified message. *

BuilderException构造方法

* 使用特定的信息创建BuilderException实例对象。 * * @param errorCode Error identified code * 错误识别代码 * @param messageKey Message identify key * 信息识别键值 * @param collections given parameters of information formatter * 用于资源信息格式化的参数 */ public BuilderException(final long errorCode, final String messageKey, final Object... collections) { super(errorCode, messageKey, collections); } /** *

Constructor method for BuilderException

* Create a new BuilderException with the specified message and root cause. *

BuilderException构造方法

* 使用特定的信息以及异常信息对象实例创建BuilderException实例对象。 * * @param errorCode Error identified code * 错误识别代码 * @param messageKey Message identify key * 信息识别键值 * @param cause The root cause * 异常信息对象实例 * @param collections given parameters of information formatter * 用于资源信息格式化的参数 */ public BuilderException(final long errorCode, final String messageKey, final Throwable cause, final Object... collections) { super(errorCode, messageKey, cause, collections); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy