com.opensymphony.xwork2.InvalidMetadataException Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2002-2006 by OpenSymphony
* All rights reserved.
*/
package com.opensymphony.xwork2;
/**
* InvalidMetadataException
*
* @author Rainer Hermanns
* @version $Id: InvalidMetadataException.java 1187 2006-11-13 08:05:32Z mrdon $
*/
public class InvalidMetadataException extends RuntimeException {
/**
* Create a new InvalidMetadataException
with the supplied error message.
*
* @param msg the error message
*/
public InvalidMetadataException(String msg) {
super(msg);
}
}