Uses of Class
com.masai.Exceptions.RecordNotFoundException
Packages that use RecordNotFoundException
-
Uses of RecordNotFoundException in com.masai.Dao
Methods in com.masai.Dao that throw RecordNotFoundExceptionModifier and TypeMethodDescriptionAdminDao.getAllBuyer()Retrieve all active buyers.AdminDaoImpl.getAllBuyer()Retrieve all active buyers.AdminDao.getAllProducts()Retrieve all products.AdminDaoImpl.getAllProducts()Retrieve all products.AdminDao.getAllProductsByCategory(String CatName) Retrieve all products belonging to a specific category.AdminDaoImpl.getAllProductsByCategory(String CatName) Retrieve all products belonging to a specific category.AdminDao.getAllProductsByInAccendingOrderByPrice()Retrieve all products sorted in ascending order of price.AdminDaoImpl.getAllProductsByInAccendingOrderByPrice()Retrieve all products sorted in ascending order of price.AdminDao.getAllProductsByQuantity(int from, int to) Retrieve all products within a specified quantity range.AdminDaoImpl.getAllProductsByQuantity(int from, int to) Retrieve all products within a specified quantity range.AdminDao.getAllProductsBySellerUsername(String username) Retrieve all products belonging to a specific seller's username.AdminDaoImpl.getAllProductsBySellerUsername(String username) Retrieve all products belonging to a specific seller's username.AdminDao.getAllSoldProducts()Retrieve all sold products.AdminDaoImpl.getAllSoldProducts()Retrieve all sold products.AdminDao.getAllTransaction()Retrieve all transactions.AdminDaoImpl.getAllTransaction()Retrieve all transactions.AdminDao.getAllTransactionbyDateRange(LocalDate startDate, LocalDate endDate) Retrieve all transactions within a specific date range.AdminDaoImpl.getAllTransactionbyDateRange(LocalDate startDate, LocalDate endDate) Retrieve all transactions within a specific date range.AdminDao.getAllTransactionByGSTPercentage()Retrieve all transactions sorted by GST percentage.AdminDaoImpl.getAllTransactionByGSTPercentage()Retrieve all transactions sorted by GST percentage.AdminDao.getAllTransactionByPurchaseDate()Retrieve all transactions sorted by purchase date.AdminDaoImpl.getAllTransactionByPurchaseDate()Retrieve all transactions sorted by purchase date.AdminDao.getAllTransactionByQuantity()Retrieve all transactions sorted by quantity.AdminDaoImpl.getAllTransactionByQuantity()Retrieve all transactions sorted by quantity.AdminDao.getAllTransactionByTotalPrice()Retrieve all transactions sorted by total price.AdminDaoImpl.getAllTransactionByTotalPrice()Retrieve all transactions sorted by total price.BuyerDao.getBuyerAllTransactionbyDateRange(LocalDate startDate, LocalDate endDate, String username) Retrieves all transactions of a buyer within a specified date range.BuyerDaoImpl.getBuyerAllTransactionbyDateRange(LocalDate startDate, LocalDate endDate, String username) Retrieves all transactions of a buyer within a specified date range.BuyerDao.getBuyerAllTransactionByGSTPercentage(String username) Retrieves all transactions of a buyer based on the GST percentage of the transactions.BuyerDaoImpl.getBuyerAllTransactionByGSTPercentage(String username) Retrieves all transactions of a buyer based on the GST percentage of the transactions.BuyerDao.getBuyerAllTransactionByPurchaseDate(String username) Retrieves all transactions of a buyer based on the purchase date of the transactions.BuyerDaoImpl.getBuyerAllTransactionByPurchaseDate(String username) Retrieves all transactions of a buyer based on the purchase date of the transactions.BuyerDao.getBuyerAllTransactionByQuantity(String username) Retrieves all transactions of a buyer based on the quantity of the transactions.BuyerDaoImpl.getBuyerAllTransactionByQuantity(String username) Retrieves all transactions of a buyer based on the quantity of the transactions.BuyerDao.getBuyerAllTransactionByTotalPrice(String username) Retrieves all transactions of a buyer based on the total price of the transactions.BuyerDaoImpl.getBuyerAllTransactionByTotalPrice(String username) Retrieves all transactions of a buyer based on the total price of the transactions.AdminDao.getTransactionById(int id) Retrieve a transaction by its ID.AdminDaoImpl.getTransactionById(int id) Retrieve a transaction by its ID.