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

de.codecamp.messages.shared.conf.ProjectConfException Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package de.codecamp.messages.shared.conf;

public class ProjectConfException
  extends
    Exception
{

  private final String errorCode;

  private final Object[] errorCodeArgs;


  public ProjectConfException(String message, String errorCode, Object... errorCodeArgs)
  {
    super(message);
    this.errorCode = errorCode;
    this.errorCodeArgs = errorCodeArgs;
  }

  public ProjectConfException(String message, Throwable cause, String errorCode,
      Object... errorCodeArgs)
  {
    super(message, cause);
    this.errorCode = errorCode;
    this.errorCodeArgs = errorCodeArgs;
  }

  public String getErrorCode()
  {
    return errorCode;
  }

  public Object[] getErrorCodeArgs()
  {
    return errorCodeArgs;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy