Package pl.zgora.uz.wmie.fe.exception

Examples of pl.zgora.uz.wmie.fe.exception.InformationException


  @WebMethod
  public String getStanowiskoName(@WebParam()Integer id) throws InformationException{
    try{
      return stanowiskoService.load(id).getNazwa();
    }catch (Exception e) {
      throw new InformationException("504","cos sie zjebalo");
    }
  }
View Full Code Here


  public String getStanowiskoName(@WebParam()Integer id) throws InformationException{
    try{
      System.out.println("data source "+dataSource);
      return stanowiskoService.load(id).getNazwa();
    }catch (Exception e) {
      throw new InformationException("504","cos sie zjebalo");
    }
  }
View Full Code Here

TOP

Related Classes of pl.zgora.uz.wmie.fe.exception.InformationException

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.