Implement device linking

This commit is contained in:
AsamK 2016-04-07 16:30:20 +02:00
parent f6b9222eda
commit 33956bde62
4 changed files with 114 additions and 6 deletions

View file

@ -0,0 +1,19 @@
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;
}
}