Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 513 for Fong (0.12 sec)

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

     * 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);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 947 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

     */
    package org.codelibs.core.exception;
    
    import java.lang.reflect.Field;
    
    public class BeanFieldSetAccessibleFailureException extends ClRuntimeException {
        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
        protected final transient Field targetField;
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Fri Mar 08 13:23:29 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

     */
    package org.codelibs.core.exception;
    
    import java.lang.reflect.Method;
    
    public class BeanMethodSetAccessibleFailureException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
        protected final transient Method targetMethod;
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Fri Mar 08 13:23:29 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PACDecodingException.java

     */
    package jcifs.pac;
    
    
    import jcifs.CIFSException;
    
    
    @SuppressWarnings ( "javadoc" )
    public class PACDecodingException extends CIFSException {
    
        private static final long serialVersionUID = 1L;
    
    
        public PACDecodingException () {
            this(null, null);
        }
    
    
        public PACDecodingException ( String message ) {
            this(message, null);
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbUnsupportedOperationException.java

     */
    package jcifs.smb;
    
    
    /**
     * @author mbechler
     *
     */
    public class SmbUnsupportedOperationException extends SmbException {
    
        /**
         * 
         */
        private static final long serialVersionUID = -5576981906065713710L;
    
    
        /**
         * 
         */
        public SmbUnsupportedOperationException () {
            super("Operation is not supported with the negotiated capabilities");
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java

     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 1000)
        public String updatedBy;
    
        @ValidateTypeFailure
        public Long updatedTime;
    
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/EditForm.java

     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 1000)
        public String updatedBy;
    
        @ValidateTypeFailure
        public Long updatedTime;
    
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

     */
    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    
    public class DataStoreCrawlingException extends CrawlingAccessException {
    
        private static final long serialVersionUID = 1L;
    
        private final String url;
    
        private final boolean abort;
    
        public DataStoreCrawlingException(final String url, final String message, final Exception e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SMBSignatureValidationException.java

        }
    
    
        /**
         * @param msg
         */
        public SMBSignatureValidationException ( String msg ) {
            super(msg);
        }
    
        /**
         * 
         */
        private static final long serialVersionUID = 2283323396289696982L;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/SsoMessageException.java

    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;
    
        public SsoMessageException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top