mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 02:50:39 +00:00
19 lines
410 B
Java
19 lines
410 B
Java
package org.asamk.signal;
|
|
|
|
public class UserAlreadyExists extends Exception {
|
|
private String username;
|
|
private String fileName;
|
|
|
|
public UserAlreadyExists(String username, String fileName) {
|
|
this.username = username;
|
|
this.fileName = fileName;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return fileName;
|
|
}
|
|
}
|