0% found this document useful (0 votes)
82 views1 page

HM Crashlog

An error occurred while executing an asynchronous background task in an Android application. This was caused by the application attempting to open a SQLite database file that did not exist at the specified location. Further details indicate the database file at '/data/user/0/com.happymod.apk/databases/community.db' could not be opened, resulting in the runtime exception.

Uploaded by

Nelly Almonte
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
82 views1 page

HM Crashlog

An error occurred while executing an asynchronous background task in an Android application. This was caused by the application attempting to open a SQLite database file that did not exist at the specified location. Further details indicate the database file at '/data/user/0/com.happymod.apk/databases/community.db' could not be opened, resulting in the runtime exception.

Uploaded by

Nelly Almonte
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

2023-04-03_22-17-21

java.lang.RuntimeException: An error occurred while executing doInBackground()


at android.os.AsyncTask$4.done(AsyncTask.java:415)
at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:383)
at java.util.concurrent.FutureTask.setException(FutureTask.java:252)
at java.util.concurrent.FutureTask.run(FutureTask.java:271)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at java.lang.Thread.run(Thread.java:923)
Caused by: android.database.sqlite.SQLiteCantOpenDatabaseException: Cannot open
database '/data/user/0/com.happymod.apk/databases/community.db': File
/data/user/0/com.happymod.apk/databases/community.db doesn't exist
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:252)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:205)
at
android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionP
ool.java:505)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:206)
at
android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:198)
at android.database.sqlite.SQLiteDatabase.openInner(SQLiteDatabase.java:918)
at android.database.sqlite.SQLiteDatabase.open(SQLiteDatabase.java:898)
at
android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:789)
at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:888)
at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:873)
at
android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:341)
at org.xutils.db.DbManagerImpl.b(DbManagerImpl.java:5)
at org.xutils.db.DbManagerImpl.<init>(DbManagerImpl.java:4)
at org.xutils.db.DbManagerImpl.getInstance(DbManagerImpl.java:3)
at org.xutils.x.getDb(Unknown Source:0)
at u4.a.g(CommunityDb.java:1)
at z3.d$a.a(ModCommentManager.java:64)
at z3.d$a.doInBackground(Unknown Source:2)
at android.os.AsyncTask$3.call(AsyncTask.java:394)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
... 3 more
Caused by: android.database.sqlite.SQLiteCantOpenDatabaseException: unknown error
(code 14 SQLITE_CANTOPEN): Could not open database
at android.database.sqlite.SQLiteConnection.nativeOpen(Native Method)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:224)
... 22 more

You might also like