[UPDATE]
In der Klasse ccm-cms/src/com/arsdigita/cms/ui/folder/FolderCreator.java die FormProcessException in der Zeile 55 umgebaut. Exception einfach weitergeleitet. git-svn-id: https://svn.libreccm.org/ccm/trunk@3172 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
fbd3eaf854
commit
10178b5d51
|
|
@ -24,6 +24,7 @@ import com.arsdigita.bebop.PageState;
|
|||
import com.arsdigita.bebop.event.FormSectionEvent;
|
||||
import com.arsdigita.cms.Folder;
|
||||
import com.arsdigita.cms.ItemSelectionModel;
|
||||
import com.arsdigita.cms.util.GlobalizationUtil;
|
||||
import com.arsdigita.db.Sequences;
|
||||
import com.arsdigita.domain.DataObjectNotFoundException;
|
||||
import com.arsdigita.persistence.OID;
|
||||
|
|
@ -51,7 +52,7 @@ public class FolderCreator extends FolderForm {
|
|||
m.setSelectedKey(state, Sequences.getNextValue());
|
||||
} catch (java.sql.SQLException ex) {
|
||||
s_log.error("Error retrieving sequence.nextval", ex);
|
||||
throw new FormProcessException(ex.getMessage());
|
||||
throw new FormProcessException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue