NoSuchUserException.java
/*
* Copyright (c) 2014 Wael Chatila / Icegreen Technologies. All Rights Reserved.
* This software is released under the Apache license 2.0
* This file has been used and modified.
* Original file can be found on http://foedus.sourceforge.net
*/
package com.icegreen.greenmail.user;
public class NoSuchUserException extends UserException {
static final long serialVersionUID = 4245125422606632354L;
public NoSuchUserException() {
super();
}
public NoSuchUserException(String message) {
super(message);
}
public NoSuchUserException(String message, Throwable cause) {
super(message, cause);
}
public NoSuchUserException(Throwable cause) {
super(cause);
}
}