aboutsummaryrefslogtreecommitdiffstats
path: root/test/net/java/sip/communicator/slick/configuration
diff options
context:
space:
mode:
authorWerner Dittmann <wernerd@java.net>2010-04-09 13:11:48 +0000
committerWerner Dittmann <wernerd@java.net>2010-04-09 13:11:48 +0000
commit12bd1ba9b05a73463ea4a9ad9e4526db4d604027 (patch)
tree03392a12be51837a77b25ad95771657fe5dcffbf /test/net/java/sip/communicator/slick/configuration
parent73cf690b0411b6b48d659c56c423bfd705751dbc (diff)
downloadjitsi-12bd1ba9b05a73463ea4a9ad9e4526db4d604027.zip
jitsi-12bd1ba9b05a73463ea4a9ad9e4526db4d604027.tar.gz
jitsi-12bd1ba9b05a73463ea4a9ad9e4526db4d604027.tar.bz2
Just fix a typo in ConfigPropertyVetoException
Diffstat (limited to 'test/net/java/sip/communicator/slick/configuration')
-rw-r--r--test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java b/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java
index 94b2b0e..3ff4d26 100644
--- a/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java
+++ b/test/net/java/sip/communicator/slick/configuration/TestConfigurationService.java
@@ -298,7 +298,7 @@ public class TestConfigurationService extends TestCase
{
configurationService.setProperty(propertyName, propertyValue);
}
- catch (ConfigPropertyVetoExceoption ex)
+ catch (ConfigPropertyVetoException ex)
{
fail("A PropertyVetoException came from nowhere. Exc="
+ ex.getMessage());
@@ -323,7 +323,7 @@ public class TestConfigurationService extends TestCase
{
configurationService.setProperty(propertyName, propertyNewValue);
}
- catch (ConfigPropertyVetoExceoption ex)
+ catch (ConfigPropertyVetoException ex)
{
fail("A PropertyVetoException came from nowhere. Exc="
+ ex.getMessage());
@@ -348,7 +348,7 @@ public class TestConfigurationService extends TestCase
{
configurationService.setProperty(propertyName, propertyValue);
}
- catch (ConfigPropertyVetoExceoption ex)
+ catch (ConfigPropertyVetoException ex)
{
fail("A PropertyVetoException came from nowhere. Exc="
+ ex.getMessage());
@@ -375,7 +375,7 @@ public class TestConfigurationService extends TestCase
{
configurationService.setProperty(propertyName, propertyValue);
}
- catch (ConfigPropertyVetoExceoption ex)
+ catch (ConfigPropertyVetoException ex)
{
fail("A PropertyVetoException came from nowhere. Exc="
+ ex.getMessage());
@@ -399,7 +399,7 @@ public class TestConfigurationService extends TestCase
{
configurationService.setProperty(propertyName, propertyNewValue);
}
- catch (ConfigPropertyVetoExceoption ex)
+ catch (ConfigPropertyVetoException ex)
{
fail("A PropertyVetoException came from nowhere. Exc="
+ ex.getMessage());
@@ -425,7 +425,7 @@ public class TestConfigurationService extends TestCase
{
configurationService.setProperty(propertyName, propertyValue);
}
- catch (ConfigPropertyVetoExceoption ex)
+ catch (ConfigPropertyVetoException ex)
{
fail("A PropertyVetoException came from nowhere. Exc="
+ ex.getMessage());
@@ -445,12 +445,12 @@ public class TestConfigurationService extends TestCase
configurationService.addVetoableChangeListener(rudeVetoListener);
configurationService.addPropertyChangeListener(pListener);
- ConfigPropertyVetoExceoption exception = null;
+ ConfigPropertyVetoException exception = null;
try
{
configurationService.setProperty(propertyName, propertyValue);
}
- catch (ConfigPropertyVetoExceoption ex)
+ catch (ConfigPropertyVetoException ex)
{
exception = ex;
}
@@ -487,7 +487,7 @@ public class TestConfigurationService extends TestCase
{
configurationService.setProperty(propertyName, propertyNewValue);
}
- catch (ConfigPropertyVetoExceoption ex1)
+ catch (ConfigPropertyVetoException ex1)
{
ex1.printStackTrace();
fail("unexpected veto exception. message:" + ex1.getMessage());