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

io.honeybadger.com.github.mustachejava.reflect.MissingWrapper Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.mustachejava.reflect;

import static java.util.Arrays.asList;

/**
 * Used to mark a wrapper this is only guarding a complete miss.
 */
public class MissingWrapper extends GuardedWrapper {
  private final String name;

  public MissingWrapper(String name, Guard[] guards) {
    super(guards);
    this.name = name;
  }

  public String toString() {
    return "[Missing: " + name + " Guards: " + asList(guards) + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy