Skip to content
Snippets Groups Projects
Commit e170e665 authored by Taras's avatar Taras
Browse files

Create Session not created exception

parent cb1d4071
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,6 @@
<string name="private_circles">Private Circles</string>
<string name="log_out">Log out</string>
<string name="others">Others</string>
<string name="session_is_not_created">Session is not created</string>
<string name="following_format">Following %d</string>
<string name="followed_by_format">Followed by %d</string>
<string name="leave">Leave</string>
......
......@@ -7,7 +7,6 @@
<string name="initial_device_name">FUTO Circles (Android)</string>
<string name="not_found_login_flow_for_user">Log In flow for user not found</string>
<string name="unsupported_login_method">Unsupported login method</string>
<string name="session_is_not_created">Session is not created</string>
<string name="discard_current_login_progress">Discard current login progress?</string>
<string name="set_password">Set password</string>
<string name="log_in">Log In</string>
......
package org.futo.circles.core
import android.content.Context
class SessionIsNotCreatedException(context: Context) :
Exception(context.getString(R.string.session_is_not_created))
......@@ -51,5 +51,6 @@
<string name="send_screenshot">Send screenshot</string>
<string name="save">Save</string>
<string name="select_items_from_list_below">Select items from list below</string>
<string name="session_is_not_created">Session is not created</string>
</resources>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment