aensley/sonar-teams-notifier

View on GitHub
src/main/java/com/andrewensley/sonarteamsnotifier/domain/InvalidHttpResponseException.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.andrewensley.sonarteamsnotifier.domain;

public class InvalidHttpResponseException extends Exception {

  /**
   * Constructor.
   *
   * @param errorMessage The error message of the exception.
   */
  public InvalidHttpResponseException(String errorMessage) {
    super(errorMessage);
  }
}