001 package org.bukkit.metadata;
002
003 /**
004 * A MetadataEvaluationException is thrown any time a {@link
005 * LazyMetadataValue} fails to evaluate its value due to an exception. The
006 * originating exception will be included as this exception's cause.
007 */
008 @SuppressWarnings("serial")
009 public class MetadataEvaluationException extends RuntimeException {
010 MetadataEvaluationException(Throwable cause) {
011 super(cause);
012 }
013 }