package com.aemreunal.exception.user; /* * *********************** * * Copyright (c) 2015 * * * * This code belongs to: * * * * @author Ahmet Emre Ünal * * S001974 * * * * aemreunal@gmail.com * * emre.unal@ozu.edu.tr * * * * aemreunal.com * * *********************** * */ public class UserNotFoundException extends NullPointerException { public UserNotFoundException() { super("The requested user can not be found!"); } }