Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for FessSystemException (0.49 sec)

  1. src/main/java/org/codelibs/fess/exception/SearchQueryException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class SearchQueryException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SearchQueryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/InvalidQueryException.java

     */
    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.mylasta.action.FessMessages;
    import org.lastaflute.web.validation.VaMessenger;
    
    public class InvalidQueryException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        private final transient VaMessenger<FessMessages> messageCode;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/SsoMessageException.java

     */
    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.mylasta.action.FessMessages;
    import org.lastaflute.web.validation.VaMessenger;
    
    public class SsoMessageException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        private final transient VaMessenger<FessMessages> messageCode;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.annotation.Secured;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.exception.FessSystemException;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/WebApiException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class WebApiException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        private final int statusCode;
    
        public int getStatusCode() {
            return statusCode;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/PrunedTag.java

    import java.util.regex.Pattern;
    
    import org.apache.commons.lang3.StringUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.stream.StreamUtil;
    import org.codelibs.fess.exception.FessSystemException;
    import org.w3c.dom.Node;
    
    public class PrunedTag {
        private final String tag;
        private String id;
        private String css;
        private String attrName;
        private String attrValue;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/UnsupportedSearchException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class UnsupportedSearchException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public UnsupportedSearchException(final String msg) {
            super(msg);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 871 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/QueryParseException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    import org.apache.lucene.queryparser.classic.ParseException;
    
    public class QueryParseException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public QueryParseException(final ParseException cause) {
            super(cause);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 931 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/StorageException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        public StorageException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 970 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class ContentNotFoundException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ContentNotFoundException(final String parentUrl, final String url) {
            super("Not Found: " + url + " Parent: " + parentUrl, false, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 947 bytes
    - Viewed (0)
Back to top