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

com.github.eirslett.maven.plugins.frontend.lib.FrontendException Maven / Gradle / Ivy

package com.github.eirslett.maven.plugins.frontend.lib;

public class FrontendException extends Exception {

  FrontendException(String message) {
    super(message);
  }

  FrontendException(String message, Throwable cause){
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy