The problem is that I cite some book and the cite number starts with 12 but I want the order how I cite ( first cite = 1, second = 2, etc.).
\documentclass[oneside]{ausarbeitung}
\usepackage[backend=biber,style=numeric,sorting = none]{biblatex}
\bibliography{latexlit.bib}
\newtheorem{Bsp}{Beispiel}[chapter]
\begin{document}
...
\cite{1}
\cite{2}
....
\printbibliography
\end{document}
I get this error:
The package biblatex has already been loaded with options:
[toc=bib,style=numeric,backend=biber]
There has now been an attempt to load it with options
[toc=bib,style=numeric,backend=biber,sorting = none]
Adding the global options: toc=bib,style=numeric,backend=biber,toc=bib,style=numeric,backend=biber,sorting = none
but when I'm adding this, the problem is still there.

\usepackage[backend = biber, style = numeric, sorting = none]{biblatex}should work. – Marijn Feb 19 '20 at 21:20sorting=noneshould do what you want. – moewe Feb 19 '20 at 21:20\usepackage{biblatex}statement, it appears you have two separate statements now. Also, when you have reduced it to one statement and you run without error, then you may need to runbiberagain and then LaTeX again to see the changes in the pdf. – Marijn Feb 19 '20 at 21:34ausarbeitung.cls(where did you get it from?): Apparently it loadsbiblatexitself. – moewe Feb 19 '20 at 21:35biblatexwithtoc=bib,style=numeric,backend=biber. You can try putting\PassOptionsToPackage{sorting=none}{biblatex}on the top of your document (even before\documentclass{ausarbeitung}) and then remove the\usepackagestatement from your code. – Marijn Feb 19 '20 at 21:41