A special thanks goes to @aerouk for almost all of the changes found here. By: Wesley Wolfe <weswolf@aol.com>
14 lines
370 B
Java
14 lines
370 B
Java
package org.bukkit.metadata;
|
|
|
|
/**
|
|
* A MetadataConversionException is thrown any time a {@link
|
|
* LazyMetadataValue} attempts to convert a metadata value to an inappropriate
|
|
* data type.
|
|
*/
|
|
@SuppressWarnings("serial")
|
|
public class MetadataConversionException extends RuntimeException {
|
|
MetadataConversionException(String message) {
|
|
super(message);
|
|
}
|
|
}
|