caccl
Version:
Canvas App Complete Connection Library: an all-in-one library for connecting your app to Canvas, handling lti, access tokens, and api.
19 lines (18 loc) • 525 B
TypeScript
/**
* List of error codes for the CACCL server
* @author Gabe Abrams
*/
declare enum ErrorCode {
NoLaunchInfo = "CSERV1",
NoPassbackContent = "CSERV2",
NoOutcomeInfo = "CSERV3",
PassbackParamNotAccepted = "CSERV4",
PassbackUnsuccessful = "CSERV5",
NoAssignmentLaunch = "CSERV6",
CantInitAPIWithoutLaunch = "CSERV7",
CantInitAPIWithoutAuth = "CSERV8",
PassbackBeforeCACCLInitialized = "CSERV9",
StatusFailed = "CSERV10",
NoAPIAuthDisabled = "CSERV11"
}
export default ErrorCode;