com.fastchar.extjs.out.FastExtParamError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-extjs Show documentation
Show all versions of fastchar-extjs Show documentation
FastChar-ExtJs is a Java Web framework that uses extjs libraries.
package com.fastchar.extjs.out;
import com.fastchar.annotation.AFastOverride;
import com.fastchar.annotation.AFastPriority;
import com.fastchar.core.FastAction;
import com.fastchar.out.FastOutParamError;
@AFastPriority
public class FastExtParamError extends FastOutParamError {
@Override
public void response(FastAction action) throws Exception {
action.responseJson(-9, getMessage());
}
}