Loading src/main/java/de/luhmer/owncloud/accountimporter/exceptions/CurrentAccountNotFoundException.java +18 −1 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; import android.content.Context; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class CurrentAccountNotFoundException extends SSOException { Loading src/main/java/de/luhmer/owncloud/accountimporter/exceptions/NextcloudFilesAppAccountNotFoundException.java +19 −0 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class NextcloudFilesAppAccountNotFoundException extends SSOException { } src/main/java/de/luhmer/owncloud/accountimporter/exceptions/NextcloudFilesAppNotInstalledException.java +19 −0 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class NextcloudFilesAppNotInstalledException extends SSOException { } src/main/java/de/luhmer/owncloud/accountimporter/exceptions/NoCurrentAccountSelectedException.java +18 −1 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; import android.content.Context; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class NoCurrentAccountSelectedException extends SSOException { Loading src/main/java/de/luhmer/owncloud/accountimporter/exceptions/SSOException.java +19 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,25 @@ import java.lang.reflect.InvocationTargetException; import de.luhmer.owncloud.accountimporter.R; import de.luhmer.owncloud.accountimporter.model.ExceptionMessage; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class SSOException extends Exception { private ExceptionMessage em; Loading Loading
src/main/java/de/luhmer/owncloud/accountimporter/exceptions/CurrentAccountNotFoundException.java +18 −1 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; import android.content.Context; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class CurrentAccountNotFoundException extends SSOException { Loading
src/main/java/de/luhmer/owncloud/accountimporter/exceptions/NextcloudFilesAppAccountNotFoundException.java +19 −0 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class NextcloudFilesAppAccountNotFoundException extends SSOException { }
src/main/java/de/luhmer/owncloud/accountimporter/exceptions/NextcloudFilesAppNotInstalledException.java +19 −0 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class NextcloudFilesAppNotInstalledException extends SSOException { }
src/main/java/de/luhmer/owncloud/accountimporter/exceptions/NoCurrentAccountSelectedException.java +18 −1 Original line number Diff line number Diff line package de.luhmer.owncloud.accountimporter.exceptions; import android.content.Context; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class NoCurrentAccountSelectedException extends SSOException { Loading
src/main/java/de/luhmer/owncloud/accountimporter/exceptions/SSOException.java +19 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,25 @@ import java.lang.reflect.InvocationTargetException; import de.luhmer.owncloud.accountimporter.R; import de.luhmer.owncloud.accountimporter.model.ExceptionMessage; /** * Nextcloud SingleSignOn * * @author David Luhmer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class SSOException extends Exception { private ExceptionMessage em; Loading