source: src/main/java/com/example/moviezone/model/exceptions/PasswordsDoNotMatchException.java

Last change on this file was e097c1c, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

login and register in HomeController

  • Property mode set to 100644
File size: 227 bytes
Line 
1package com.example.moviezone.model.exceptions;
2
3 public class PasswordsDoNotMatchException extends RuntimeException {
4
5 public PasswordsDoNotMatchException() {
6 super("Passwords do not match exception.");
7 }
8 }
Note: See TracBrowser for help on using the repository browser.