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

org.legendofdragoon.modloader.ModNotLoadedException Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package org.legendofdragoon.modloader;

public class ModNotLoadedException extends RuntimeException {
  public ModNotLoadedException(final String message) {
    super(message);
  }

  public ModNotLoadedException(final String message, final Throwable cause) {
    super(message, cause);
  }

  public ModNotLoadedException(final Throwable cause) {
    super(cause);
  }

  protected ModNotLoadedException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy