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

io.github.mmm.base.exception.GlobalExceptionHandlerAccess Maven / Gradle / Ivy

package io.github.mmm.base.exception;

import java.util.ServiceLoader;

import io.github.mmm.base.service.ServiceHelper;

/**
 * Class giving {@link #get() global access} to the {@link GlobalExceptionHandler} implementation.
 */
public final class GlobalExceptionHandlerAccess {

  private static final GlobalExceptionHandler HANDLER = ServiceHelper
      .singleton(ServiceLoader.load(GlobalExceptionHandler.class), false);

  private GlobalExceptionHandlerAccess() {

  }

  /**
   * @return the {@link GlobalExceptionHandler} instance.
   */
  public static GlobalExceptionHandler get() {

    return HANDLER;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy