Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 20aff0e9 authored by Tobias Kaminsky's avatar Tobias Kaminsky Committed by GitHub
Browse files

Merge pull request #203 from nextcloud/exception-message-serializable

ExceptionMessage should implement Serializable
parents 2630f7ef 7e72b469
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
package com.nextcloud.android.sso.model;

import java.io.Serializable;

/**
 *  Nextcloud SingleSignOn
 *
@@ -19,7 +21,7 @@ package com.nextcloud.android.sso.model;
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class ExceptionMessage {
public class ExceptionMessage implements Serializable {

    public String title;
    public String message;