blob: 6f4922b58b29978aa87fcd7f47e4883784faf377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package org.berzerkula.builddb;
public class BuilddbConstants {
private BuilddbConstants() {
throw new IllegalStateException("Utility class");
}
public static final String VIEW_REGISTER = "register";
public static final String DTO_REGISTER = "registerDto";
public static final String MSG_EXCEPTION = "Exception: {}";
}
|