Package edu.ubb.warp.exception

Examples of edu.ubb.warp.exception.DAOException


        users.add(getUserFromResult(result));
      }

    } catch (SQLException e) {
      // TODO Auto-generated catch block
      throw new DAOException();
    }
    return users;
  }
View Full Code Here


        }
      } else {
        throw new UserNotFoundException();
      }
    } catch (SQLException e) {
      throw new DAOException();
    }
  }
View Full Code Here

TOP

Related Classes of edu.ubb.warp.exception.DAOException

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.