var LoginNotFoundError = function() {
    this.message = "Login does not exist.";
    this.name = "LoginNotFoundError";
    Error.captureStackTrace(this, LoginNotFoundError);
};