Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for FessSystemException (0.22 sec)

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

    package org.codelibs.fess.exception;
    
    public class FessSystemException extends RuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public FessSystemException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public FessSystemException(final String message) {
            super(message);
        }
    
        public FessSystemException(final Throwable cause) {
            super(cause);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClientException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.client;
    
    import org.codelibs.fess.exception.FessSystemException;
    
    public class SearchEngineClientException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SearchEngineClientException(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)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java

    import org.codelibs.fess.crawler.entity.ResponseData;
    import org.codelibs.fess.crawler.extractor.Extractor;
    import org.codelibs.fess.crawler.extractor.ExtractorFactory;
    import org.codelibs.fess.exception.FessSystemException;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class FessFileTransformer extends AbstractFessFileTransformer {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

            if (extractorFactory == null) {
                throw new FessSystemException("Could not find extractorFactory.");
            }
            Extractor extractor = extractorFactory.getExtractor(responseData.getMimeType());
            if (extractor == null) {
                extractor = ComponentUtil.getComponent("tikaExtractor");
                if (extractor == null) {
                    throw new FessSystemException("Could not find tikaExtractor.");
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/DictionaryException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict;
    
    import org.codelibs.fess.exception.FessSystemException;
    
    public class DictionaryException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public DictionaryException(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)
  6. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            final String[] froms = time.split(":");
            if (froms.length != 2) {
                throw new FessSystemException("Invalid format: " + time);
            }
            final int[] values = new int[2];
            values[0] = Integer.parseInt(froms[0]);
            if (values[0] < 0 || values[0] > 23) {
                throw new FessSystemException("Invalid format: " + time);
            }
            values[1] = Integer.parseInt(froms[1]);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

    import java.io.InputStream;
    import java.util.List;
    
    import org.codelibs.core.io.InputStreamUtil;
    import org.codelibs.core.io.ResourceUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.exception.FessSystemException;
    import org.codelibs.fess.helper.PluginHelper.Artifact;
    import org.codelibs.fess.helper.PluginHelper.ArtifactType;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.lastaflute.di.exception.IORuntimeException;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/FessUserNotFoundException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class FessUserNotFoundException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public FessUserNotFoundException(final String username) {
            super("User is not found: " + username);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 903 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/LdapOperationException.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 LdapOperationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public LdapOperationException(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
    - 990 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/ScriptEngineException.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 ScriptEngineException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ScriptEngineException(final String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 986 bytes
    - Viewed (0)
Back to top