File tree 1 file changed +12
-12
lines changed
packages/astro/src/core/errors
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -901,18 +901,6 @@ export const MiddlewareCantBeLoaded = {
901
901
message : 'An unknown error was thrown while loading your middleware.' ,
902
902
} satisfies ErrorData ;
903
903
904
- /**
905
- * @docs
906
- * @description
907
- * Thrown in development mode when the actions file can't be loaded.
908
- *
909
- */
910
- export const ActionsCantBeLoaded = {
911
- name : 'ActionsCantBeLoaded' ,
912
- title : "Can't load the Astro actions." ,
913
- message : 'An unknown error was thrown while loading the Astro actions file.' ,
914
- } satisfies ErrorData ;
915
-
916
904
/**
917
905
* @docs
918
906
* @see
@@ -1818,6 +1806,18 @@ export const ActionCalledFromServerError = {
1818
1806
// Generic catch-all - Only use this in extreme cases, like if there was a cosmic ray bit flip.
1819
1807
export const UnknownError = { name : 'UnknownError' , title : 'Unknown Error.' } satisfies ErrorData ;
1820
1808
1809
+ /**
1810
+ * @docs
1811
+ * @description
1812
+ * Thrown in development mode when the actions file can't be loaded.
1813
+ *
1814
+ */
1815
+ export const ActionsCantBeLoaded = {
1816
+ name : 'ActionsCantBeLoaded' ,
1817
+ title : "Can't load the Astro actions." ,
1818
+ message : 'An unknown error was thrown while loading the Astro actions file.' ,
1819
+ } satisfies ErrorData ;
1820
+
1821
1821
/**
1822
1822
* @docs
1823
1823
* @kind heading
You can’t perform that action at this time.
0 commit comments