Skip to content

Commit 7bdbec1

Browse files
authored
Update MonoAlphabetic.java
1 parent 8cbe08a commit 7bdbec1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/thealgorithms/ciphers/MonoAlphabetic.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import java.util.Scanner;
22

33
public final class MonoAlphabetic {
4+
private MonoAlphabetic() {
5+
throw new UnsupportedOperationException("Utility class");
6+
}
47
public static void main(String[] args) {
58
Scanner read = new Scanner(System.in);
69
System.out.println("Hello User! \nEnter your name:");

0 commit comments

Comments
 (0)