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

org.smallmind.license.WrappedException Maven / Gradle / Ivy

There is a newer version: 5.9.0
Show newest version
package org.smallmind.license;

public class WrappedException extends RuntimeException {

  public WrappedException (Exception exception) {

    super(exception);
  }

  public  E convert (Class exceptionClass) {

    return exceptionClass.cast(getCause());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy