Are both measured with error and both positive? In that case, a delta method approach is one option. Of course, the distribution for a ratio of two random variables can often only rather poorly describe by a normal distribution, working on a log-scale often works better.
A delta method approach gives you this, I believe:
$$\operatorname{SE}\left(\frac{A}{B}\right) \approx \frac{\mu_A}{\mu_B} \sqrt{\frac{\text{SE}_A^2}{\mu_A^2} + \frac{\text{SE}_B^2}{\mu_B^2} - \frac{2\rho \text{SE}_A \text{SE}_B}{\mu_A\mu_B}}$$
and if the two estimates are not correlated (i.e. $\rho = 0$ )
$$ \operatorname{SE}\left(\frac{A}{B}\right) \approx \frac{\mu_A}{\mu_B} \sqrt{ \frac{\text{SE}_A^2}{\mu_A^2} + \frac{\text{SE}_B^2}{\mu_B^2}}.$$
You can easily visualize what a distribution looks like, e.g. using R via hist(pmax(rnorm(n=1000, 10, 2.5), 1e-3) / pmax( rnorm(n=1000, 10, 2.5), 1e-3), breaks=100).