gw.lang.javadoc.IExceptionNode Maven / Gradle / Ivy
/*
* Copyright 2014 Guidewire Software, Inc.
*/
package gw.lang.javadoc;
import gw.lang.UnstableAPI;
@UnstableAPI
public interface IExceptionNode {
String getDescription();
void setDescription( String value );
String getType();
void setType( String name );
}