Package net.loyin.util.exception

Examples of net.loyin.util.exception.ImageRuntimeException


      encoder.encode(_image);
      out.close();
    } catch (FileNotFoundException e) {
     
      e.printStackTrace();
      throw new ImageRuntimeException(srcFile, "生成缩略图");
    } // 输出到文件流
    catch (ImageFormatException e) {
      e.printStackTrace();
      throw new ImageRuntimeException(srcFile, "生成缩略图");
    } catch (IOException e) {
      e.printStackTrace();
      throw new ImageRuntimeException(srcFile, "生成缩略图");
    }

  }
View Full Code Here

TOP

Related Classes of net.loyin.util.exception.ImageRuntimeException

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.