mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-06-08 07:37:44 +00:00
We decided on calling the state file the "vault" a while back. This patch makes the naming consistent across the codebase. I left "DatabaseImporter" classes alone, because I'm not sure what a better name for those would be.
11 lines
252 B
Java
11 lines
252 B
Java
package com.beemdevelopment.aegis.vault;
|
|
|
|
public class VaultFileException extends Exception {
|
|
public VaultFileException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public VaultFileException(String message) {
|
|
super(message);
|
|
}
|
|
}
|