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

com.thaiopensource.resolver.ResolverException Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
package com.thaiopensource.resolver;

/**
 *
 */
public class ResolverException extends Exception {
  public ResolverException(Throwable t) {
    super(t);
  }
  public ResolverException(String message) {
    super(message);
  }

  public Throwable unwrap() {
    if (getMessage() == null) {
      Throwable t = getCause();
      if (t != null)
        return t;
    }
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy