* @throws SystemException
*/
public InterceptorVO create(InterceptorVO interceptorVO, Database db) throws SystemException, Exception
{
Interceptor interceptor = new InterceptorImpl();
interceptor.setValueObject(interceptorVO);
db.create(interceptor);
return interceptor.getValueObject();
}