Skip to content

Commit

Permalink
minor text adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
conapi-stefan committed Jul 24, 2024
1 parent 247cdf1 commit 257b63b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions docs/docs/troubleshooting/howto-classloadingissue.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
sidebar_label: 'How To Fix Class Loading Issues'
---
import ReactPlayer from 'react-player'
import useBaseUrl from '@docusaurus/useBaseUrl';




Expand Down Expand Up @@ -51,6 +53,7 @@ Once you have added the required jars, you have to double check that the classpa
Sometimes additional jars are added because they are referenced in the JAR manifest file.

## Solution Video
<ReactPlayer controls url={useBaseUrl('/videos/howtoFixClassloading.mp4')} />
<ReactPlayer controls url='/videos/howtoFixClassloading.mp4' />


Expand Down
2 changes: 1 addition & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const config = {

// ... https://conapi-oss.github.io/messagemanager/
url: 'https://conapi-oss.github.io/', // Your website URL
baseUrl: '/messagemanager/',
baseUrl: '/',
projectName: 'messagemanager',
organizationName: 'conapi-oss',
trailingSlash: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public static synchronized String getVersion() {

public static final String VERSION = "4.0.1";
//public static final String SUFFIX = "${suffix}";
public static final String BUILD_TIMESTAMP = "Wed Jul 24 07:48:41 CEST 2024";
public static final String BUILD_TIMESTAMP = "Wed Jul 24 16:09:36 CEST 2024";
public static final String BUILD_ID = "4.0.1";
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public static synchronized String getVersion() {

public static final String VERSION = "4.0.1";
//public static final String SUFFIX = "${suffix}";
public static final String BUILD_TIMESTAMP = "Wed Jul 24 07:48:41 CEST 2024";
public static final String BUILD_TIMESTAMP = "Wed Jul 24 16:09:36 CEST 2024";
public static final String BUILD_ID = "4.0.1";
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public static synchronized String getVersion() {

public static final String VERSION = "4.0.1";
//public static final String SUFFIX = "${suffix}";
public static final String BUILD_TIMESTAMP = "Wed Jul 24 07:48:41 CEST 2024";
public static final String BUILD_TIMESTAMP = "Wed Jul 24 16:09:36 CEST 2024";
public static final String BUILD_ID = "4.0.1";
}
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private String translateExceptionMessage(Throwable e) {

if( e instanceof java.lang.module.ResolutionException ||
e instanceof java.lang.module.FindException){
return "Please check the Example/Template profile for recommended JARs on the classpath<br>and adjust the classpath: <br>" + e.getMessage() + "<br><br>Detailed Instructions can be found: <a href='https://conapi-oss.github.io/messagemanager/docs/troubleshooting/howto-classloadingissue'>How To Fix Class Loading Issues</a>";
return "Please check the Example/Template profile for recommended JARs on the classpath<br>and adjust the classpath: <br><br>" + e.getMessage() + "<br><br>More Information: <a href='https://conapi-oss.github.io/messagemanager/docs/troubleshooting/howto-classloadingissue'>How To Fix Class Loading Issues</a>";
}

if(MANAGE_PERMISSION_DENIED.equals(e.getClass().getName())
Expand Down

0 comments on commit 257b63b

Please sign in to comment.