Package br.com.jteam.jfcm.model.services.exception

Examples of br.com.jteam.jfcm.model.services.exception.FileIsNotAZipException


          "File name cannot be null");
    }
    String extension = FileTypeUtil.extractFileExtension(fileName);
    if(!FileType.ZIP.getFileExtension().equalsIgnoreCase(
        extension)) {
      throw new FileIsNotAZipException(
          "File is not a zip");
    }
  }
View Full Code Here

TOP

Related Classes of br.com.jteam.jfcm.model.services.exception.FileIsNotAZipException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.