Alachisoft.NCache.Parser.AttributeIndexNotDefined Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-parser Show documentation
Show all versions of nc-parser Show documentation
Internal package of Alachisoft.
package Alachisoft.NCache.Parser;
import java.io.Serializable;
public class AttributeIndexNotDefined extends RuntimeException implements Serializable {
public AttributeIndexNotDefined(String error) {
super(error);
}
public AttributeIndexNotDefined(String error, RuntimeException exception) {
super(error, exception);
}
//Huma:CM-1000 : Not Supported - FEATURE
// public AttributeIndexNotDefined(SerializationInfo info, StreamingContext context) {
// super(info, context);
// }
}