ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/http/fileupload/FileUploadException.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/http/fileupload/FileUploadException.java
Status
scanned
Type
file
Name
FileUploadException.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
1855 (1.8 KB)
MD5
3a1bfdc8ea2cc7c9d02655cf2bcbdc69
SHA1
b3a685a6a87509a359153764cc4f4e2cdbad0054
SHA256
81d5e64ac7f653078027a33e6eae8eaa02c4f15ce0a6f87a31e127e589829319
SHA512

      
    
SHA1_git
eb6c5ecc2d4cfb0c21f79372944cee02dbda8916
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
FileUploadException.java | 1.8 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tomcat.util.http.fileupload; import java.io.IOException; /** * Exception for errors encountered while processing the request. */ public class FileUploadException extends IOException { private static final long serialVersionUID = -4222909057964038517L; /** * Constructs a new {@code FileUploadException} without message. */ public FileUploadException() { super(); } /** * Constructs a new {@code FileUploadException} with specified detail * message. * * @param message the error message. */ public FileUploadException(final String message) { super(message); } /** * Creates a new {@code FileUploadException} with the given * detail message and cause. * * @param message The exceptions detail message. * @param cause The exceptions cause. */ public FileUploadException(final String message, final Throwable cause) { super(message, cause); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
56.67
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9