9 lines
492 B
Python
9 lines
492 B
Python
"""
|
|
Constants for courseware app.
|
|
"""
|
|
UNEXPECTED_ERROR_IS_ELIGIBLE = "An unexpected error occurred while fetching " \
|
|
"financial assistance eligibility criteria for this course"
|
|
UNEXPECTED_ERROR_APPLICATION_STATUS = "An unexpected error occurred while getting " \
|
|
"financial assistance application status"
|
|
UNEXPECTED_ERROR_CREATE_APPLICATION = "An unexpected error occurred while creating financial assistance application"
|