com.lushapp.core.web.upload.exception.FileNameLengthLimitExceededException.java Source code

Java tutorial

Introduction

Here is the source code for com.lushapp.core.web.upload.exception.FileNameLengthLimitExceededException.java

Source

/**
 *  Copyright (c) 2014 http://www.lushapp.wang
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.lushapp.core.web.upload.exception;

import org.apache.commons.fileupload.FileUploadException;

/**
 * ??
 * <p>Date: 13-3-8 ?8:44
 * <p>Version: 1.0
 */
public class FileNameLengthLimitExceededException extends FileUploadException {

    private int length;
    private int maxLength;
    private String filename;

    public FileNameLengthLimitExceededException(String filename, int length, int maxLength) {
        super("file name : [" + filename + "], length : [" + length + "], max length : [" + maxLength + "]");
        this.length = length;
        this.maxLength = maxLength;
        this.filename = filename;
    }

    public String getFilename() {
        return filename;
    }

    public int getLength() {
        return length;
    }

    public int getMaxLength() {
        return maxLength;
    }

}