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

com.itemis.maven.plugins.unleash.scm.ScmException Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
package com.itemis.maven.plugins.unleash.scm;

public class ScmException extends RuntimeException {
  private static final long serialVersionUID = -8864350557327681422L;

  private ScmOperation operation;

  public ScmException(String message) {
    this(ScmOperation.UNKNOWN, message);
  }

  public ScmException(ScmOperation operation, String message) {
    super(message);
    this.operation = operation;
  }

  public ScmException(ScmOperation operation, String message, Throwable cause) {
    super(message, cause);
    this.operation = operation;
  }

  public ScmOperation getOperation() {
    return this.operation;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy