mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-06-08 15:47:47 +00:00
Rename "Database" to "Vault"
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.
This commit is contained in:
parent
d0baeef064
commit
5ab4307963
63 changed files with 480 additions and 494 deletions
|
@ -0,0 +1,11 @@
|
|||
package com.beemdevelopment.aegis.vault;
|
||||
|
||||
public class VaultFileException extends Exception {
|
||||
public VaultFileException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public VaultFileException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue