Skip to content
Snippets Groups Projects

added a mechanism to change the default logger implementation

Merged Bitbucket Importer requested to merge bitbucket/merged-pr-20 into branch/default
7 files
+ 332
100
Compare changes
  • Side-by-side
  • Inline
Files
7
package com.aragost.javahg.internals;
/**
* This exception is thrown if an error occurs during load of a service
* with the {@link ServiceLoader}.
*
* @author Sebastian Sdorra
*/
public final class ServiceException extends Exception
{
private static final long serialVersionUID = 4453421798347799570L;
public ServiceException(){
}
public ServiceException(String message){
super(message);
}
public ServiceException(String message, Throwable cause){
super(message, cause);
}
public ServiceException(Throwable cause){
super(cause);
}
}
Loading